adusting for bullseye mariadb versions

This commit is contained in:
Patrick McGuire
2021-11-10 14:02:26 -05:00
parent a1d2a05e56
commit dede5e97af
10 changed files with 82 additions and 12 deletions
+6 -1
View File
@@ -33,7 +33,12 @@ install_mariadb() {
apt -qqy install mariadb-server
echo "MariaDB Installed"
fi
${my_dir}/update_db_pwd.sh
source /etc/os-release
if [[ "${VERSION_CODENAME}" == "buster" ]];then
${my_dir}/update_db_pwd_buster.sh
elif [[ "${VERSION_CODENAME}" == "bullseye" ]];then
${my_dir}/update_db_pwd_bullseye.sh
fi
}
install_birdnet_analysis() {