forked from ylogx/logmein
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall
executable file
·53 lines (47 loc) · 1.34 KB
/
install
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env bash
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved. This file is offered as-is,
# without any warranty.
filename="logmein.py"
install_location="/usr/bin/logmein"
credential_file=~/.login.txt
#Uninstall option
if test "$1" == "--uninstall"
then
echo "About to uninstall LogMeIn"
echo "Are you sure ? <Y/n>"
read sure
if test sure == 'Y'
then
sudo rm -f "$install_location"
exit 0
fi
fi
#Copy file
sudo cp -f $filename $install_location
if [ $? == 0 ]; then
echo ' Installation Successful.';
fi
echo
echo "For quicker access, paste the following lines at the end of ~/.bashrc file: "
echo "alias li='logmein -i'"
echo "alias lo='logmein -o'"
echo
#Setup Credential
if [ -f "$HOME/.login.txt" ]; then
echo -n 'NOTE: Credential file ~/.login.txt exists for account: ';
head -1 ~/.login.txt;
else
echo -n "Do you want to setup you wifi credential file <y/n>? "
read sure
if test $sure == 'y'
then
echo -n 'Enter your wifi username: '
read username
echo -n 'Enter your wifi password: '
read password
echo -e "$username\n$password" > $credential_file
echo "Saved to $credential_file"
fi
fi