diff options
Diffstat (limited to 'consul/restore_configuration.sh')
-rwxr-xr-x | consul/restore_configuration.sh | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/consul/restore_configuration.sh b/consul/restore_configuration.sh deleted file mode 100755 index 33742e5..0000000 --- a/consul/restore_configuration.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/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 |