make users replace password -- not root

This commit is contained in:
Patrick McGuire
2021-12-04 15:52:10 -05:00
parent d28eba2a4c
commit 6010917f04
+2 -2
View File
@@ -35,9 +35,9 @@ install_mariadb() {
fi
source /etc/os-release
if [[ "${VERSION_CODENAME}" == "buster" ]];then
${my_dir}/update_db_pwd_buster.sh
USER=${USER} ${my_dir}/update_db_pwd_buster.sh
elif [[ "${VERSION_CODENAME}" == "bullseye" ]];then
${my_dir}/update_db_pwd_bullseye.sh
USER=${USER} ${my_dir}/update_db_pwd_bullseye.sh
fi
}