0df161b762
moved systemd services to /usr/lib/systemd/system will symlink from templates for easy updates
13 lines
334 B
Bash
Executable File
13 lines
334 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Update BirdNET-Pi
|
|
source /etc/birdnet/birdnet.conf
|
|
trap 'exit 1' SIGINT SIGHUP
|
|
USER=pi
|
|
HOME=/home/pi
|
|
my_dir=${HOME}/BirdNET-Pi/scripts
|
|
|
|
sudo -u${USER} git -C /home/pi/BirdNET-Pi stash
|
|
sudo -u${USER} git -C /home/pi/BirdNET-Pi pull
|
|
sudo systemctl daemon-reload
|
|
sudo -u${USER} git -C /home/pi/BirdNET-Pi stash pop
|