fix(apps): Removed some double b64enc on autogenerated secrets, also some quotes off them. (#1937)

* fix(anonaddy): only b64enc once

* fix(pydio-cells): trim `"` from dbPass

* chore(paperless-ng): don't quote secret

* fix(linkace): don't quote secret

* chore(librephotos): don't quote secret

* chore(leantime): don't quote secret

* chore(fireflyiii): don't quote secret

* chore(authelia): dont quote secret
This commit is contained in:
Stavros Kois
2022-02-23 00:10:13 +01:00
committed by GitHub
parent bee3228738
commit d1dd5c4660
16 changed files with 26 additions and 26 deletions
@@ -14,7 +14,7 @@ data:
SECRET_KEY: {{ index $librephotosprevious.data "SECRET_KEY" }}
{{- else }}
{{- $secret_key := randAlphaNum 32 }}
SECRET_KEY: {{ $secret_key | b64enc | quote }}
SECRET_KEY: {{ $secret_key | b64enc }}
{{- end }}
{{- end -}}