update update_birdnet2.sh

This commit is contained in:
Patrick McGuire
2021-11-03 12:58:30 -04:00
parent be824e6194
commit 4539f53aa9
+2 -15
View File
@@ -1,27 +1,14 @@
#!/usr/bin/env bash
# Second stage of update
birdnet_conf=/home/pi/BirdNET-Pi/birdnet.conf
# Stage 1 updates the birdnet.conf
sudo -upi sed -i 's/EXTRACTIONS_URL/BIRDNETPI_URL/g'
if ! grep EXTRACTIONLOG ${birdnet_conf} &> /dev/null;then
echo "EXTRACTIONLOG_URL=" >> ${birdnet_conf}
echo "BIRDNETLOG_URL=" >> ${birdnet_conf}
fi
sudo -upi sed -i 's/=http:\/\/birdnetpi.local/=/g' ${birdnet_conf}
# Stage 2 updates the services
my_dir=${HOME}/BirdNET-Pi/scripts
# Stage 1 updates the services
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
sudo systemctl restart extraction.timer