diff options
author | makefu <github@syntax-fehler.de> | 2017-07-28 23:05:16 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-07-28 23:05:16 +0200 |
commit | b28d64255a9d61f89e375dc8f6d39e1c34aa6900 (patch) | |
tree | e956ca9bf12ecad908b961196022d132878cffbb /makefu/2configs/deployment/owncloud.nix | |
parent | 8e3b4fec4485003898eec51f431a7cca6a2d907e (diff) |
ma owncloud: disable mysql.dataDir rootPassword deployment
for now
Diffstat (limited to 'makefu/2configs/deployment/owncloud.nix')
-rw-r--r-- | makefu/2configs/deployment/owncloud.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/makefu/2configs/deployment/owncloud.nix b/makefu/2configs/deployment/owncloud.nix index c6fb9c8e5..65ac5c184 100644 --- a/makefu/2configs/deployment/owncloud.nix +++ b/makefu/2configs/deployment/owncloud.nix @@ -140,10 +140,10 @@ in { enable = false; databases = [ "nextcloud" ]; }; - - krebs.secret.files.mysql_rootPassword = { - path = "${config.services.mysql.dataDir}/mysql_rootPassword"; - owner.name = "root"; - source-path = toString <secrets> + "/mysql_rootPassword"; - }; + # dataDir is only defined after mysql is enabled + # krebs.secret.files.mysql_rootPassword = { + # path = "${config.services.mysql.dataDir}/mysql_rootPassword"; + # owner.name = "root"; + # source-path = toString <secrets> + "/mysql_rootPassword"; + # }; } |