Files
AvianVisitors/scripts/update_birdnet2.sh
T
2021-10-18 13:57:23 -04:00

19 lines
402 B
Bash
Executable File

#!/usr/bin/env bash
# Second stage of update
# Stage 1 updates the services
my_dir=${HOME}/BirdNET-Pi/scripts
sudo ${my_dir}/update_services.sh
# Stage 2 restarts the services
newservices=$(awk '/service/ && /systemctl/ && !/php/ {print $3}' ${my_dir}/install_services.sh | sort)
restart_newservices() {
for i in ${newservices[@]};do
sudo systemctl restart ${i}
done
}
restart_newservices