infrastructure/.vault_pass

12 lines
172 B
Text
Raw Normal View History

2020-08-10 02:06:18 +02:00
#!/bin/sh
if [ "$CI_VAULT_PASS" != "" ]; then
echo "$CI_VAULT_PASS"
exit 0
fi
if command -v pass >/dev/null 2>&1; then
pass show server/ansible-vault
exit 0
fi