Remove container and install scripts for multiple apps

Deleted setup and install scripts for donetick, infisical, nginxproxymanager, openwebui, pangolin, and tracktor from ct/ and install/ directories. Also fixed unbound variable error in setup_mariadb_db by using '${DB_PASS:-}' in misc/tools.func.
This commit is contained in:
CanbiZ
2025-11-10 13:21:53 +01:00
parent aefeddd9d4
commit b8c35bfb9f
12 changed files with 1 additions and 1082 deletions

View File

@@ -3082,7 +3082,7 @@ function setup_mariadb_db() {
return 1
fi
if [[ -z "$DB_PASS" ]]; then
if [[ -z "${DB_PASS:-}" ]]; then
DB_PASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13)
fi