11 lines
172 B
Bash
Executable file
11 lines
172 B
Bash
Executable file
#!/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
|