14 lines
160 B
Bash
Executable File
14 lines
160 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
gpg --decrypt --pinentry-mode=loopback --output secrets.tgz secrets.asc
|
|
|
|
tar -xzvf secrets.tgz ./secret-configuration/
|
|
|
|
rm secrets.tgz
|
|
|
|
|