forked from tedsluis/dump1090-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dump1090-tools-install.sh
executable file
·235 lines (216 loc) · 10.1 KB
/
dump1090-tools-install.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#!/bin/bash
# Installs dump-tools, collectd for dump1090 mutability on raspbian.
# The installer will:
# - create directories (with the permissions of the parent directory).
# - download the files and copy them with the correct permissions to the target directories.
# - create backup files whenever existing files are updated.
# - run as '$user' user and use 'root' whenever if needed.
# - install 'collectd' and start it.
# - add the 'graphs-crontabjob.sh' script to crontab (scheduled every 5 minutes).
# - a copy of the original crontab is saved.
# - create graphs for the first time.
#
#
# By [email protected]
# get username, exit if root (as whoami doesn't report username then)
user=$(whoami)
rootuser="root"
# Test user.
if [ "x${rootuser}" = "x${USER}" ]; then
echo "Error: This script should NOT be launched by user root."
exit 1;
else
echo "This script is launched by user $USER."
fi
# Collectd installed?
echo "==============INSTALL:[collectd]================================="
check=$(dpkg-query -W -f='${Status} ${Version}\n' collectd)
echo $check
if [[ $check =~ ok ]]; then
echo "Collect $check"
else
sudo apt-get install -y collectd
fi
# RRDTOOL installed?
echo "==============INSTALL:[rrdtool]================================="
check=$(dpkg-query -W -f='${Status} ${Version}\n' rrdtool)
echo $check
if [[ $check =~ ok ]]; then
echo "rrdtool $check"
else
sudo apt-get install -y rrdtool
fi
# lighttpd installed?
echo "==============INSTALL:[lighttpd]================================="
check=$(dpkg-query -W -f='${Status} ${Version}\n' lighttpd)
echo $check
if [[ $check =~ ok ]]; then
echo "lighttpd $check"
else
sudo apt-get install -y lighttpd
fi
# Pyton2.7 installed?
echo "==============INSTALL:[python]================================="
check=$(dpkg-query -W -f='${Status} ${Version}\n' libpython2.7)
echo $check
if [[ $check =~ ok ]]; then
echo "libpython2.7 $check"
else
sudo apt-get install -y libpython2.7
fi
# date time string
now=$(date +"%Y%m%d%H%M%S")
# change owner ship file or directory
CHANGEPERMISSIONS() {
path=$1
permission=$2
owner=$3
group=$4
# get path permissions, owner and group.
pathpermission="$(stat --format '%a' "$path")"
pathowner="$(stat --format '%U' "$path")"
pathgroup="$(stat --format '%G' "$path")"
# if someone else is owner, then use root privilege to change permissions
if [ "x${pathowner}" = "x${USER}" ]; then
if [ ! "x${pathpermission}" = "x${permission}" ]; then
echo "execute ($USER): chmod $permission $path (owner=$owner)"
chmod $permission $path
fi
if [ ! "x${pathgroup}" = "x${group}" ]; then
echo "execute ($USER): chgrp $group $path (owner=$owner)"
chgrp $group $path
fi
else
echo "execute (root): sudo chown $owner $path"
sudo chown $owner $path
if [ ! "x${pathpermission}" = "x${permission}" ]; then
echo "execute (root): sudo chmod $permission $path (owner=$owner)"
sudo chmod $permission $path
fi
if [ ! "x${pathgroup}" = "x${group}" ]; then
echo "execute (root): sudo chgrp $group $path (owner=$owner)"
sudo chgrp $group $path
fi
fi
}
# create directory
MKDIR(){
directorypath=$1
path="/"
# split directory path into subdirectories
# check if it exists, otherwise create it and set permissions
for subdirectory in $(echo $directorypath | tr "/" " ")
do
dir="$path$subdirectory/"
# create directory if it does not exists.
if [ ! -d "$dir" ]; then
permission=$( stat -c %a $path )
owner=$( stat -c %U $path )
group=$( stat -c %G $path )
# use root privilege if the current directory is not writable.
if [ ! -w "$path" ]; then
echo "execute (root): sudo mkdir $dir"
sudo mkdir $dir
else
echo "execute ($USER): mkdir $dir"
mkdir $dir
fi
CHANGEPERMISSIONS "$dir" "$permission" "$owner" "$group"
fi
path=$dir
done
}
# download file to target directory
GETFILE(){
websource=$1
targetfile=$2
permission=$3
file="${targetfile##*/}"
directory="${targetfile%/*}"
echo ""
echo "==============NEW FILE:[$file]========================================"
echo " websource=$websource"
echo " targetfile=$targetfile"
echo " permission=$permission"
echo " directory=$directory"
echo " file=$file."
# make directory if it does not exists.
MKDIR "$directory" "$permission"
#
owner=$( stat -c %U $directory )
group=$( stat -c %G $directory )
# move previous version if target file already exists.
if [ -e $targetfile ]; then
# use root privilege if the current directory or file is not writable.
if [ ! -w $directory ] || [ ! -w $targetfile ]; then
echo "execute (root): sudo mv $targetfile $targetfile.$now"
sudo mv $targetfile "$targetfile.$now"
else
echo "execute ($USER): mv $targetfile $targetfile.$now"
mv $targetfile "$targetfile.$now"
fi
CHANGEPERMISSIONS "$targetfile.$now" "$permission" "$owner" "$group"
fi
# use root privilege to download file from web to the target location if the current directory is not writable.
if [ ! -w "$directory" ]; then
echo "execute (root): sudo wget $websource -O $targetfile"
sudo wget $websource -O $targetfile
else
echo "execute ($USER): wget $websource -O $targetfile"
wget $websource -O $targetfile
fi
CHANGEPERMISSIONS "$targetfile" "$permission" "$owner" "$group"
}
# Download files, save in target directories and set permissions.
# Directories will be created with the same permissions, owner and group like the parent directories.
# Files will get the specified permissions.
GETFILE "https://raw.githubusercontent.com/tedsluis/dump1090-tools/master/collectd.conf" "/etc/collectd/collectd.conf" "644"
GETFILE "https://raw.githubusercontent.com/tedsluis/dump1090-tools/master/index.html" "/var/www/collectd/index.html" "644"
GETFILE "https://raw.githubusercontent.com/tedsluis/dump1090-tools/master/default.css" "/var/www/collectd/default.css" "644"
GETFILE "https://raw.githubusercontent.com/tedsluis/dump1090-tools/master/jquery.js" "/var/www/collectd/jquery.js" "644"
GETFILE "https://raw.githubusercontent.com/tedsluis/dump1090-tools/master/lightbox.min.js" "/var/www/collectd/lightbox.min.js" "644"
GETFILE "https://raw.githubusercontent.com/tedsluis/dump1090-tools/master/lightbox.min.css" "/var/www/collectd/lightbox.min.css" "644"
GETFILE "https://raw.githubusercontent.com/tedsluis/dump1090-tools/master/dump1090.db" "/home/$user/dump-tools/collectd/dump1090.db" "774"
GETFILE "https://raw.githubusercontent.com/tedsluis/dump1090-tools/master/dump1090.py" "/home/$user/dump-tools/collectd/dump1090.py" "775"
GETFILE "https://raw.githubusercontent.com/tedsluis/dump1090-tools/master/graphs-crontabjob.sh" "/home/$user/dump-tools/collectd/graphs-crontabjob.sh" "775"
GETFILE "https://raw.githubusercontent.com/tedsluis/dump1090-tools/master/make-graphs.sh" "/home/$user/dump-tools/collectd/make-graphs.sh" "775"
GETFILE "https://raw.githubusercontent.com/tedsluis/dump1090-tools/master/insert_hosts.sh" "/home/$user/dump-tools/collectd/insert_hosts.sh" "775"
GETFILE "https://raw.githubusercontent.com/tedsluis/dump1090-tools/master/nodata.png" "/var/www/collectd/nodata.png" "644"
#Replace username pi with actual username
rp_str="s#/home/pi#/home/$user#g"
sudo sed -i $rp_str /etc/collectd/collectd.conf
sudo sed -i $rp_str /home/$user/dump-tools/collectd/graphs-crontabjob.sh
sudo sed -i $rp_str /home/$user/dump-tools/collectd/insert_hosts.sh
# Add graphs-crontabjob.sh to crontab
echo "==============ADD TO CRONTAB:[graphs-crontabjob.sh]=============="
echo "execute (root): sudo crontab -l > /home/$user/dump-tools/crontab.$now"
sudo touch "/home/$user/dump-tools/crontab.$now"
CHANGEPERMISSIONS "/home/$user/dump-tools/crontab.$now" "666" "$user" "$user"
sudo crontab -l > "/home/$user/dump-tools/crontab.$now"
echo "execute (root): sudo cp /home/$user/dump-tools/crontab.$now /home/$user/dump-tools/crontab"
sudo cp "/home/$user/dump-tools/crontab.$now" "/home/$user/dump-tools/crontab"
CHANGEPERMISSIONS "/home/$user/dump-tools/crontab" "666" "$user" "$user"
echo "execute (root): sed -i '/graphs-crontabjob.sh/d' /home/$user/dump-tools/crontab"
sudo sed -i '/graphs-crontabjob.sh/d' "/home/$user/dump-tools/crontab"
echo "execute (root): sudo echo '*/5 * * * * sudo /home/$user/dump-tools/collectd/graphs-crontabjob.sh >/dev/null' >> /home/$user/dump-tools/crontab"
sudo echo "*/5 * * * * sudo /home/"$user'/dump-tools/collectd/graphs-crontabjob.sh >/dev/null' >> "/home/$user/dump-tools/crontab"
echo "execute (root): sudo crontab /home/$user/dump-tools/crontab"
sudo crontab "/home/$user/dump-tools/crontab"
sudo rm "/home/$user/dump-tools/crontab"
# Reads /etc/hosts and /home/$user/dump-tools/collectd/hosts and then adds other dump1090 hosts to /var/www/collectd/index.html
echo "==============UPDATE index.html=================================="
sudo /home/$user/dump-tools/collectd/insert_hosts.sh
# Restart collectd to initialize /etc/collectd/collectd.conf
echo "==============RESTART:[collectd]================================="
sudo /etc/init.d/collectd restart
# create graphs for the first time
echo "==============CREATE GRAPHS======================================"
/home/$user/dump-tools/collectd/graphs-crontabjob.sh
# Edit /etc/lighttpd/lighttpd.conf, change /var/www/html into /var/www
echo "==============EDIT:[/etc/lighttpd/lighttpd.conf]================="
echo "execute (root): sudo sed -i 's/server.document-root.*/server.document-root = \"/var/www\"/g' /etc/lighttpd/lighttpd.conf"
sudo sed -i 's/server.document-root.*/server.document-root = \"\/var\/www\"/g' "/etc/lighttpd/lighttpd.conf"
# Reload lighttpd web server
echo "==============RELOAD:[lighttpd]=================================="
echo "execute (root): sudo /etc/init.d/lighttpd force-reload"
sudo /etc/init.d/lighttpd force-reload