737042b24b
adding the new variable to the update script to make sure it is added to older systems
24 lines
850 B
Bash
Executable File
24 lines
850 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Update BirdNET-Pi
|
|
source /etc/birdnet/birdnet.conf
|
|
trap 'exit 1' SIGINT SIGHUP
|
|
USER=$(awk -F: '/1000/ {print $1}' /etc/passwd)
|
|
HOME=$(awk -F: '/1000/ {print $6}' /etc/passwd)
|
|
my_dir=$HOME/BirdNET-Pi/scripts
|
|
|
|
sudo -u${USER} git -C $my_dir stash
|
|
sudo -u${USER} git -C $my_dir pull -f
|
|
sudo systemctl daemon-reload
|
|
sudo -u${USER} git -C $my_dir stash pop
|
|
sudo ln -sf $my_dir/* /usr/local/bin/
|
|
if ! grep python3 <(head -n1 $my_dir/analyze.py);then
|
|
echo "Ensure all python scripts use the virtual environment"
|
|
sed -si "1 i\\#\!$HOME/BirdNET-Pi/birdnet/bin/python3" $my_dir/*.py
|
|
fi
|
|
if ! grep PRIVACY_MODE /etc/birdnet/birdnet.conf;then
|
|
sudo -u${USER} echo "PRIVACY_MODE=off" >> /etc/birdnet/birdnet.conf
|
|
fi
|
|
if ! grep RTSP_STREAM /etc/birdnet/birdnet.conf;then
|
|
sudo -u${USER} echo "RTSP_STREAM=" >> /etc/birdnet/birdnet.conf
|
|
fi
|