forked from jgyates/genmon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
genmonmaint.sh
executable file
·552 lines (502 loc) · 17.4 KB
/
genmonmaint.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
#!/bin/bash
genmondir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
linetoadd="@reboot sleep 30 && /bin/bash $genmondir/startgenmon.sh start"
tempfile='/tmp/gmtemp'
installnotice="This script will install libraries needed by genmon. \
This script assumes you have already downloaded the genmon project via 'git'. \
This script will optionally copy the config files to the configuration \
directory. This script will not test the serial port. This script requires \
internet access to download the needed libraries. Press any key to continue. "
updatenotice="This script will update genmon to the latest version from the github \
repository. This script requires internet access. If you have modified any \
files in the genmon directory, they will be overwritten. Configuration files \
in the configuration directory will not be overritten. \
Continue? (y/n) "
usepython3=true
pipcommand="pip3"
pipoptions=""
pythoncommand="python3"
OPTIND=1 # Reset in case getopts has been used previously in the shell.
config_path="/etc/genmon/"
log_path="/var/log/"
install_opt=false
backup_opt=false
log_opt=false
refresh_opt=false
update_opt=false
noprompt_opt=false
cleanpython_opt=false
copyfiles_opt=false
update_os=false
managedpackages=false
configfilescopied=false
useserial=true
operating_system="Unknown"
is_raspbian=true
#-------------------------------------------------------------------------------
check_os(){
source /etc/os-release
operating_system=$NAME
echo "The operating system is: $NAME"
string='My long string'
if [[ $operating_system == *"Ubuntu"* ]]; then
is_raspbian=false
fi
}
#-------------------------------------------------------------------------------
is_pi () {
ARCH=$(dpkg --print-architecture)
if [ "$ARCH" = "armhf" ] || [ "$ARCH" = "arm64" ] ; then
return 0
else
return 1
fi
}
#-------------------------------------------------------------------------------
is_pifive() {
grep -q "^Revision\s*:\s*[ 123][0-9a-fA-F][0-9a-fA-F]4[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]$" /proc/cpuinfo
return $?
}
#-------------------------------------------------------------------------------
function env_activate() {
if [ "$managedpackages" = true ] ; then
source $genmondir/genenv/bin/activate
fi
}
#-------------------------------------------------------------------------------
function env_deactivate() {
if [ "$managedpackages" = true ] ; then
deactivate
fi
}
#-------------------------------------------------------------------------------
function checkmanagedpackages() {
# /usr/lib/python3.11/EXTERNALLY-MANAGED
pythonmajor=$($pythoncommand -c 'import sys; print(sys.version_info.major)')
pythonminor=$($pythoncommand -c 'import sys; print(sys.version_info.minor)')
managedfile="/usr/lib/python$pythonmajor.$pythonminor/EXTERNALLY-MANAGED"
if [ -f $managedfile ]; then
managedpackages=true
echo "Managed system packages found, installing python virtual environment"
sudo apt-get -yqq install python3-venv
# create the virtual environment
echo "Setting up virtual python environment for genmon"
$pythoncommand -m venv $genmondir/genenv
pythoncommand="$genmondir/genenv/bin/python"
fi
}
#-------------------------------------------------------------------------------
function cleanpython() {
echo "Removing *.pyc files..."
sudo rm $genmondir/genmonlib/*.pyc
echo "Done."
}
#-------------------------------------------------------------------------------
function setuppython3() {
if [ $# -eq 0 ]; then
usepython3=false
elif [ $1 == "3" ]; then
usepython3=true
elif [ $1 == "2" ]; then
usepython3=false
else
usepython3=false
fi
if [ "$usepython3" = true ] ; then
echo 'Setting up for Python 3.x...'
pipcommand="pip3"
pythoncommand="python3"
linetoadd="$linetoadd -p 3 "
else
echo 'Setting up for Python 2.7...'
pipcommand="pip"
pythoncommand="python"
fi
}
#-------------------------------------------------------------------------------
# This function copy all config files to the target install directory
function copyconffiles() {
sudo mkdir "$config_path"
sudo cp $genmondir/conf/*.conf "$config_path"
}
#-------------------------------------------------------------------------------
# This function will update the pip libraries used
function updatelibraries() {
echo "Updating libraries...."
sudo $pythoncommand -m pip install -r $genmondir/requirements.txt -U $pipoptions
echo "Done."
}
#-------------------------------------------------------------------------------
# This function will setup the serial port
function setupserial() {
pushd $genmondir
cd OtherApps
# we will leave bluetooth on. Pi4 and earlier devices the serial port
# has a conflict unless you use the -b option
sudo $pythoncommand serialconfig.py -e -b
echo "Finished setting up the serial port."
popd
}
#-------------------------------------------------------------------------------
# This function will install rpirtscts program needed for the LTE modem
function installrpirtscts() {
echo "Installing rpirtscts..."
pushd $genmondir
cd ~
git clone https://github.com/mholling/rpirtscts.git
cd rpirtscts
make
sudo cp ./rpirtscts /usr/local/bin/rpirtscts
echo "Finished installing rpirtscts."
popd
}
#-------------------------------------------------------------------------------
# This function will install the required libraries for genmon
function installgenmon() {
echo "Installing genmon package requirements...."
# possibly use "sudo easy_install3 -U pip"
sudo apt-get -yqq update
if [ "$usepython3" = true ] ; then
sudo apt-get -yqq install python3-pip
else
sudo apt-get -yqq install python-pip
fi
if [ "$usepython3" = true ] ; then
sudo apt-get -yqq install build-essential libssl-dev libffi-dev python3-dev cargo
else
sudo apt-get -yqq install build-essential libssl-dev libffi-dev python-dev cargo
fi
sudo apt-get -yqq install cmake
sudo $pythoncommand -m pip install -r $genmondir/requirements.txt $pipoptions
sudo chmod 775 "$genmondir/startgenmon.sh"
sudo chmod 775 "$genmondir/genmonmaint.sh"
installrpirtscts
if [ -z "$2" ] && [ $1 != "noprompt" ]; then # Is parameter #1 zero length?
read -p "Copy configuration files to $config_path? (y/n)?" choice
case "$choice" in
y|Y ) echo "Copying *.conf files to "$config_path""
copyconffiles
configfilescopied=true
;; # yes choice
n|N ) echo "Not copying *.conf to "$config_path""
;; # no choice
*)
echo "Invalid choice, not copying conf files"
;; # default choice
esac
else
copyconffiles
configfilescopied=true
fi
if [ "$configfilescopied" = true ] && [ -z "$2" ] && [ $1 != "noprompt" ]; then # Is parameter #1 zero length?
read -p "What type of connection from genmon to the controller? S=Onboard Serial, T=Network, Serial over TCP/IP Bridge, U=USB Serial (s/t/u)?" choice
case "$choice" in
s|S ) echo "Setting up serial onboard port..."
if is_pifive || [ "$is_raspbian" = false ]; then
# on a raspberry pi 5 or Ubuntu use /dev/ttyAMA0 instead of /dev/serial0
echo "Using port /dev/ttyAMA0"
sudo sudo sed -i 's/\/dev\/serial0/\/dev\/ttyAMA0/gI' /etc/genmon/genmon.conf
fi
;; # serial, nothing to do if pi 4 or lower
t|T ) echo "Network connection used for serial over TCP/IP. Not setting up onboard serial port"
sudo sed -i 's/use_serial_tcp = False/use_serial_tcp = True/gI' /etc/genmon/genmon.conf
useserial=false
;; # TCP/IP bridge
u|U ) echo "USB serial. Not setting up onboard serial port, using USB serial /dev/ttyUSB0"
sudo sudo sed -i 's/\/dev\/serial0/\/dev\/ttyUSB0/gI' /etc/genmon/genmon.conf
useserial=false
;; # USB Connection
*)
echo "Invalid choice, defaulting to onboard serial"
;; # default choice
esac
fi
if [ "$useserial" = true ]; then
if [ -z "$2" ] && [ $1 != "noprompt" ]; then # Is parameter #1 zero length?
read -p "Setup the raspberry pi onboard serial port? (y/n)?" choice
case "$choice" in
y|Y ) echo "Setting up serial port..."
setupserial
;; # yes choice
n|N ) echo "Not setting up serial port"
;; # no choice
*)
echo "Invalid choice, not setting up serial port"
;; # default choice
esac
else
setupserial
fi
fi
echo "Done."
}
#-------------------------------------------------------------------------------
function updatecrontab() {
sudo crontab -l > $tempfile
result=$(grep -i "startgenmon.sh" /tmp/gmtemp)
if [ "$result" == "" ]
then
echo "Updating crontab..."
echo "adding < $linetoadd > to crontab"
echo "$linetoadd" >> $tempfile
sudo crontab $tempfile
elif [ "$result" != "$linetoadd" ]
then
echo "Crontab has an incorrect configuration, updating:"
echo "$result"
echo "to"
echo "$linetoadd"
sed -i "s~${result/\&\&/\\\&\\\&}~${linetoadd/\&\&/\\\&\\\&}~g" $tempfile
sudo crontab $tempfile
else
echo "Crontab already contains genmon start script:"
echo "$result"
fi
}
#-------------------------------------------------------------------------------
# archive log files
function archivelogs() {
echo "Archive log files from $log_path ..."
cd $genmondir
sudo rm -r genmon_logs
sudo rm genmon_logs.tar.gz
mkdir genmon_logs
sudo cp "$log_path"genmon.log ./genmon_logs
sudo cp "$log_path"genserv.log ./genmon_logs
sudo cp "$log_path"mymail.log ./genmon_logs
sudo cp "$log_path"myserial.log ./genmon_logs
sudo cp "$log_path"mymodbus.log ./genmon_logs
sudo cp "$log_path"gengpio.log ./genmon_logs
sudo cp "$log_path"gengpioin.log ./genmon_logs
sudo cp "$log_path"gensyslog.log ./genmon_logs
sudo cp "$log_path"myserialtcp.log ./genmon_logs
sudo cp "$log_path"genlog.log ./genmon_logs
sudo cp "$log_path"genloader.log ./genmon_logs
sudo cp "$log_path"genmqtt.log ./genmon_logs
sudo cp "$log_path"genpushover.log ./genmon_logs
sudo cp "$log_path"genslack.log ./genmon_logs
sudo cp "$log_path"gensms.log ./genmon_logs
sudo cp "$log_path"gensms_modem.log ./genmon_logs
sudo cp "$log_path"genemail2sms.log ./genmon_logs
sudo cp "$log_path"genexercise.log ./genmon_logs
sudo cp "$log_path"gengpioin.log ./genmon_logs
sudo cp "$log_path"genalexa.log ./genmon_logs
sudo cp "$log_path"genemail2sms.log ./genmon_logs
sudo cp "$log_path"genexercise.log ./genmon_logs
sudo cp "$log_path"gensnmp.log ./genmon_logs
sudo cp "$log_path"gentankutil.log ./genmon_logs
sudo cp "$log_path"gentankdiy.log ./genmon_logs
sudo cp "$log_path"gentemp.log ./genmon_logs
sudo cp "$log_path"gengpioledblink.log ./genmon_logs
sudo cp "$log_path"gencthat.log ./genmon_logs
sudo cp "$log_path"genmopeka.log ./genmon_logs
sudo cp "$log_path"gencustomgpio.log ./genmon_logs
sudo cp "$log_path"gencallmebot.log ./genmon_logs
sudo cp "$log_path"gensms_voip.log ./genmon_logs
tar -zcvf genmon_logs.tar.gz genmon_logs/
sudo rm -r genmon_logs
echo "Done."
}
#-------------------------------------------------------------------------------
# backup genmon
function backupgenmon() {
echo "Backup genmon..."
cd $genmondir
sudo rm -r genmon_backup
sudo rm genmon_backup.tar.gz
mkdir genmon_backup
sudo cp "$config_path"genmon.conf ./genmon_backup
sudo cp "$config_path"mymail.conf ./genmon_backup
sudo cp "$config_path"genloader.conf ./genmon_backup
sudo cp "$config_path"genmqtt.conf ./genmon_backup
sudo cp "$config_path"genpushover.conf ./genmon_backup
sudo cp "$config_path"genslack.conf ./genmon_backup
sudo cp "$config_path"gensms.conf ./genmon_backup
sudo cp "$config_path"mymodem.conf ./genmon_backup
sudo cp "$config_path"genemail2sms.conf ./genmon_backup
sudo cp "$config_path"genexercise.conf ./genmon_backup
sudo cp "$config_path"gengpio.conf ./genmon_backup
sudo cp "$config_path"gengpioin.conf ./genmon_backup
sudo cp "$config_path"genalexa.conf ./genmon_backup
sudo cp "$config_path"genemail2sms.conf ./genmon_backup
sudo cp "$config_path"genexercise.conf ./genmon_backup
sudo cp "$config_path"gensnmp.conf ./genmon_backup
sudo cp "$config_path"gentankutil.conf ./genmon_backup
sudo cp "$config_path"gentemp.conf ./genmon_backup
sudo cp "$config_path"gentankdiy.conf ./genmon_backup
sudo cp "$config_path"gengpioledblink.conf ./genmon_backup
sudo cp "$config_path"gencthat.conf ./genmon_backup
sudo cp "$config_path"genmopeka.conf ./genmon_backup
sudo cp "$config_path"gencustomgpio.conf ./genmon_backup
sudo cp "$config_path"gencallmebot.conf ./genmon_backup
sudo cp "$config_path"gensms_voip.conf ./genmon_backup
sudo cp "$config_path"outage.txt ./genmon_backup
sudo cp "$config_path"kwlog.txt ./genmon_backup
sudo cp "$config_path"fuellog.txt ./genmon_backup
sudo cp "$config_path"maintlog.json ./genmon_backup
sudo cp "$config_path"update.txt ./genmon_backup
tar -zcvf genmon_backup.tar.gz genmon_backup/
sudo rm -r genmon_backup
echo "Done."
}
#-------------------------------------------------------------------------------
# update genmon from the github repository
# this function assumes you have downloaded the project from github
function updategenmon() {
echo "Updating genmon..."
cd $genmondir
current_time=$(date '+%Y-%m-%d:%H:%M:%S')
UPDATE_HISTORY="$config_path"update.txt
if [ ! -f "$UPDATE_HISTORY" ]; then
echo "$UPDATE_HISTORY does not exist. Creating.."
sudo touch $UPDATE_HISTORY
fi
git config --global --add safe.directory '*'
git fetch origin
git reset --hard origin/master
sudo chmod 775 "$genmondir/startgenmon.sh"
sudo chmod 775 "$genmondir/genmonmaint.sh"
sudo chown -R `stat -c "%U" $genmondir` $genmondir
sudo chgrp -R `stat -c "%G" $genmondir` $genmondir
sudo sh -c "printf '%s\n' $current_time >> $UPDATE_HISTORY"
echo "Done."
}
#-------------------------------------------------------------------------------
function printhelp() {
echo ""
echo "Usage: "
echo ""
echo " genmonmaint.sh <options>"
echo ""
echo "Options:"
echo ""
echo " -i Install genmon and required libraries"
echo " -b Backup genmon configuration"
echo " -r Refresh (update) required libraries"
echo " -u Update genmon to the latest version"
echo " -C Remove *.pyc files (clean pre-compiled python files)"
echo " -n Do not prompt for Y/N, assume yes"
echo " -c Specifiy full path to config file directory"
echo " -p Specifiy 2 or 3 for python version. 2 is default"
echo " -s Just copy conf files"
echo " -l Specifiy the full path of the log directory to archive"
echo " -f Update OS software and apt repository flags if needed"
echo " -h Display help"
echo ""
}
#-------------------------------------------------------------------------------
# main entry
while getopts ":hfp:birunc:Csl:" opt; do
case ${opt} in
h )
printhelp
exit 0
;;
f )
update_os=true
;;
p )
setuppython3 $OPTARG
;;
c )
config_path=$OPTARG
linetoadd="$linetoadd -c $OPTARG"
;;
C )
cleanpython_opt=true
;;
l )
log_path=$OPTARG
log_opt=true
;;
s )
copyfiles_opt=true
;;
b )
backup_opt=true
;;
i )
install_opt=true
;;
r )
refresh_opt=true
;;
u )
update_opt=true
;;
n )
noprompt_opt=true
;;
\? )
echo "Invalid Option: -$OPTARG" 1>&2
printhelp
exit 1
;;
esac
done
shift $((OPTIND -1))
if [ "$update_os" = true ] ; then
sudo apt-get --allow-releaseinfo-change update && sudo apt-get upgrade
fi
check_os
checkmanagedpackages
if [ "$install_opt" = true ] ; then
if [ "$noprompt_opt" = true ] ; then
env_activate
installgenmon "noprompt"
env_deactivate
updatecrontab
else
read -n 1 -s -r -p "$installnotice"
echo ""
# install libraries
env_activate
installgenmon "prompt"
env_deactivate
# update crontab
read -p "Start genmon on boot? (y/n)?" choice
case "$choice" in
y|Y ) echo "Updating crontab...."
updatecrontab
;; # yes choice
n|N ) echo "Not updating crontab."
;; # no choice
*)
echo "Invalid choice, not updating crontab.."
;; # default choice
esac
fi
fi
if [ "$cleanpython_opt" = true ] ; then
env_activate
cleanpython
env_deactivate
fi
if [ "$backup_opt" = true ] ; then
backupgenmon
fi
if [ "$log_opt" = true ] ; then
archivelogs
fi
if [ "$refresh_opt" = true ] ; then
env_activate
updatelibraries
env_deactivate
fi
if [ "$update_opt" = true ] ; then
if [ "$noprompt_opt" = true ] ; then
updategenmon
else
read -p "$updatenotice" choice
case "$choice" in
y|Y ) updategenmon
;; # yes choice
* ) echo "Not updating genmon"
;; # no choice
esac
fi
fi
if [ "$copyfiles_opt" = true ] ; then
copyconffiles
fi
exit 0