-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhal2.sh
executable file
·120 lines (103 loc) · 2.98 KB
/
hal2.sh
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/bin/bash
DEVMODE=0
separator() {
echo "$(printf '%.0s-' {1..40})"
}
separator
echo "Update and needed packages installation..."
separator
sudo apt update
sudo apt install git apache2-utils -y
separator
echo "Raspifresh installation..."
separator
read -p "Run Raspifresh installation ? (see https://github.com/urlab/raspifresh) [y/N]: " -n 1 -r reply
echo
if [[ $reply =~ ^[Yy]$ ]]; then
echo "Executing Raspifresh..."
git clone https://github.com/urlab/raspifresh.git
cd raspifresh
./fresh.sh y
cd ..
rm -rf raspifresh
fi
separator
echo "Hal2 configuration..."
separator
DO_CONFIG=1
if [ -f .env ];then
read -p "Found a .env file ! Do you want to override it with a new configuration ? [y/N]: " -n 1 -r reply
if [[ $reply =~ ^[Yy]$ ]]; then
echo "Deleting .env..."
rm .env
else
DO_CONFIG=0
fi
fi
if [[ $DO_CONFIG -eq 1 ]]; then
touch .env
echo "Please enter the admin password of the container : "
htpasswd -B .env HASH_ADMIN
# Portainer want to double all $ and we need to put a = instead of a : in the .env file AND to put two single quotes so bash do not try to interpret the password.
sed -E -i "s/:/=/; s/$//; s/\\$/\\$\\$/g" .env
fi
separator
echo "Programs selection..."
separator
programs=($(ls ./programs/ | grep "\.sh"))
# Descriptor is commented in the second line of the file
declare -a programs_descriptors
for ((i = 0; i < ${#programs[@]}; i++)); do
programs_descriptors+=("$(sed '2q;d' ./programs/${programs[$i]} | sed 's/^.//')")
done
echo "Programs available to installation : "
for ((i = 0; i < ${#programs_descriptors[@]}; i++)); do
echo "$i) ${programs_descriptors[$i]}"
done
read -p "Enter program numbers to install (separated by space) [Leave empty to install none]: " -r programs_to_install
if [[ $programs_to_install =~ [^0-9\ ] ]]; then
echo "Invalid input. Exiting..."
exit 1
fi
if [[ $DEVMODE -eq 1 ]]; then
echo "Exiting because dev mode is on."
exit 0
fi
separator
echo "Portainer installation..."
separator
sudo apt install -y curl docker.io
sudo curl -SL https://github.com/docker/compose/releases/download/v2.30.1/docker-compose-linux-armv7 -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
#sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
sudo usermod -aG docker $USER
separator
echo "Portainer installation successful."
echo "Starting portainer..."
separator
#if [[ -n "$SUDO_USER" ]]; then
# su - $SUDO_USER -c "newgrp docker"
#fi
docker-compose up -d
if [[ $programs_to_install =~ "0" ]]; then
for ((i = 0; i < ${#programs[@]}; i++)); do
separator
echo "Installing ${programs_descriptors[$i]}..."
separator
HOME=$HOME ./programs/${programs[$i]}
done
else
for i in $programs_to_install; do
separator
echo "Installing ${programs_descriptors[$i]}..."
separator
HOME=$HOME ./programs/${programs[$i]}
done
fi
separator
echo "Hal2 installation successful."
separator
echo "Please run :"
echo " newgrp docker"
echo "to start using docker now or log out and log in again."
echo "Have a great day !"