USER exported to createdb.sh

This commit is contained in:
mcguirepr89
2022-04-11 12:33:00 -04:00
parent dde349b969
commit 9319b1b55c
2 changed files with 6 additions and 3 deletions
+2 -2
View File
@@ -16,5 +16,5 @@ CREATE TABLE IF NOT EXISTS detections (
Overlap FLOAT,
File_Name VARCHAR(100) NOT NULL);
EOF
sudo chown $USER:$USER $HOME/BirdNET-Pi/scripts/birds.db
sudo chmod g+w $HOME/BirdNET-Pi/scripts/birds.db
chown $USER:$USER $HOME/BirdNET-Pi/scripts/birds.db
chmod g+w $HOME/BirdNET-Pi/scripts/birds.db
+4 -1
View File
@@ -4,7 +4,10 @@ set -x # Uncomment to enable debugging
trap 'rm -f ${tmpfile}' EXIT
trap 'exit 1' SIGINT SIGHUP
tmpfile=$(mktemp)
config_file=$my_dir/birdnet.conf
export USER=$USER
export HOME=$HOME
install_depends() {
curl -1sLf \
@@ -441,7 +444,7 @@ install_services() {
generate_BirdDB
configure_caddy_php
config_icecast
${my_dir}/scripts/createdb.sh
USER=$USER HOME=$HOME ${my_dir}/scripts/createdb.sh
}
if [ -f ${config_file} ];then