-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup_linux.sh
More file actions
executable file
·58 lines (55 loc) · 1.65 KB
/
setup_linux.sh
File metadata and controls
executable file
·58 lines (55 loc) · 1.65 KB
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
54
55
56
57
58
#!/bin/bash
current_dir=`dirname "${BASH_SOURCE[0]}"`
SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )/scripts"
pyexec=`"$SCRIPT_DIR"/python.sh`
"$pyexec" "$current_dir/kalite/manage.py" setup
we_are_rpi=`"$SCRIPT_DIR/get_setting.sh" package_selected\(\"RPi\"\)`
if [ $we_are_rpi = "True" ]; then
while true
do
echo
echo "Do you wish to configure the Raspberry Pi optimizations for this server?"
echo "You will need root/sudo privileges and an Internet connection."
echo
echo -n "Optimize now? [Y/N] "
read CONFIRM
case $CONFIRM in
y|Y)
echo "Optimize will start the KA Lite server now, "
echo " and automatically on every system boot."
echo
sudo "$SCRIPT_DIR/runatboot.sh"
sudo "$SCRIPT_DIR/optimizerpi.sh"
echo
exit
;;
n|N)
echo "To optimize later, run ./scripts/optimizerpi.sh"
echo
break
;;
esac
done
fi
initd_available=`command -v update-rc.d`
if [ $initd_available ]; then
while true
do
echo
echo "Do you wish to set the KA Lite server to run in the background automatically"
echo -n "when you start this computer (you will need root/sudo privileges) [Y/N]? "
read CONFIRM
case $CONFIRM in
y|Y)
echo
sudo "$SCRIPT_DIR/runatboot.sh"
echo
break
;;
n|N)
echo
break
;;
esac
done
fi