diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2019-12-04 16:54:59 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2019-12-04 16:54:59 +0100 |
commit | 0b3eb8ec1b3ba3691410744f6397437c9832e74d (patch) | |
tree | 88dbd13fc1ff2e9a7e3773d88143c8bc68b05a63 /consul/restore_configuration.sh | |
parent | ede3a300e5ac2567ea15db6fe40ddd9b7510d9e3 (diff) | |
parent | 08f3ef8c179b499f6b6051ad95a66ea9d352e5f9 (diff) | |
download | infrastructure-0b3eb8ec1b3ba3691410744f6397437c9832e74d.tar.gz infrastructure-0b3eb8ec1b3ba3691410744f6397437c9832e74d.zip |
Merge branch 'master' of gitlab.com:superboum/deuxfleurs.fr
Diffstat (limited to 'consul/restore_configuration.sh')
-rwxr-xr-x | consul/restore_configuration.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/consul/restore_configuration.sh b/consul/restore_configuration.sh index ba4d353..33742e5 100755 --- a/consul/restore_configuration.sh +++ b/consul/restore_configuration.sh @@ -1,6 +1,6 @@ #!/bin/bash -find {configuration,secrets} -type f \ +find {configuration,secrets}/$1 -type f \ | grep --perl-regexp --invert-match "\.sample$|\.gen$|/.gitignore$" \ | while read filename; do consul kv put "${filename}" "@${filename}" |