diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-10-19 15:26:05 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-10-19 15:26:05 -0200 |
commit | 7486b9636e84391f1c83e82399681054d178e2a0 (patch) | |
tree | 78c0a173202dcc8ea02232008cfa647bdd461a2a /lib | |
parent | 19ac2242f294256752f7e885c2102202ed24a17d (diff) | |
download | hydra-7486b9636e84391f1c83e82399681054d178e2a0.tar.gz hydra-7486b9636e84391f1c83e82399681054d178e2a0.tar.bz2 |
Deploy: fix secrets folder creation
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 2988af4..4571c24 100644 --- a/lib/hydra/deploy +++ b/lib/hydra/deploy @@ -93,7 +93,7 @@ function hydra_deploy_copy_secrets { location="remote" fi - $DEPLOY_COMMAND mkdir -p $FOLDER/etc/puppet/secrets/{domain,location,node,role} + $DEPLOY_COMMAND mkdir -p $FOLDER/etc/puppet/hiera/secrets/{domain,location,node,role} if [ ! -z "$DOMAIN" ] && [ -e "$HYDRA_FOLDER/puppet/hiera/secrets/domain/$DOMAIN.yaml" ]; then hydra_deploy_copy $location $HYDRA_FOLDER/puppet/hiera/secrets/domain/$DOMAIN.yaml $DEPLOY_DEST/etc/puppet/hiera/secrets/domain/ |