diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2023-12-14 13:41:54 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2023-12-14 13:41:54 -0300 |
commit | 54c1158aff8b987dea88b35597047fafe92cd0a7 (patch) | |
tree | b9e40abd6bc670033de0210e56af1eceda68af43 /lib | |
parent | 2368822db564cd0b71276f9af4741a7ad06fc55c (diff) | |
download | hydra-54c1158aff8b987dea88b35597047fafe92cd0a7.tar.gz hydra-54c1158aff8b987dea88b35597047fafe92cd0a7.tar.bz2 |
Fix: chown invocations
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hydra/deploy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hydra/deploy b/lib/hydra/deploy index 84a9fda..6990339 100644 --- a/lib/hydra/deploy +++ b/lib/hydra/deploy @@ -140,7 +140,7 @@ function hydra_yaml_param { function hydra_deploy_mkdirs { # Saner defaults $DEPLOY_COMMAND mkdir -p /etc/puppet/keys - $DEPLOY_COMMAND chown -R root. /etc/puppet + $DEPLOY_COMMAND chown -R root: /etc/puppet $DEPLOY_COMMAND chmod -R 640 /etc/puppet } |