diff options
Diffstat (limited to 'app_config/restore_configuration.sh')
-rwxr-xr-x | app_config/restore_configuration.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app_config/restore_configuration.sh b/app_config/restore_configuration.sh new file mode 100755 index 0000000..33742e5 --- /dev/null +++ b/app_config/restore_configuration.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +find {configuration,secrets}/$1 -type f \ + | grep --perl-regexp --invert-match "\.sample$|\.gen$|/.gitignore$" \ + | while read filename; do + consul kv put "${filename}" "@${filename}" + done |