Fix password escaping in JSON

pull/23/head
Inex Code 2022-04-06 19:55:19 +03:00
parent 0f779b5a1a
commit ecdac11cbe
1 changed files with 3 additions and 3 deletions

View File

@ -50,8 +50,8 @@ makeConf() {
"hostname": "$HOSTNAME", "hostname": "$HOSTNAME",
"nextcloud": { "nextcloud": {
"enable": true, "enable": true,
"adminPassword": "$ESCAPED_PASSWORD", "adminPassword": $ESCAPED_PASSWORD,
"databasePassword": "$ESCAPED_PASSWORD" "databasePassword": $ESCAPED_PASSWORD
}, },
"gitea": { "gitea": {
"enable": true "enable": true
@ -66,7 +66,7 @@ makeConf() {
"enable": true "enable": true
}, },
"timezone": "Europe/Uzhgorod", "timezone": "Europe/Uzhgorod",
"resticPassword": "$ESCAPED_PASSWORD", "resticPassword": $ESCAPED_PASSWORD,
"username": "$LUSER" "username": "$LUSER"
} }
EOF EOF