12 lines
172 B
Text
12 lines
172 B
Text
|
#!/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
|