change structure
add alerts
This commit is contained in:
parent
306abe6c32
commit
106116528d
14 changed files with 432 additions and 9 deletions
10
ansible/util/secret-service-client.sh
Executable file
10
ansible/util/secret-service-client.sh
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
pass=`secret-tool lookup ansible_vault dataserver`
|
||||
retval=$?
|
||||
|
||||
if [ $retval -ne 0 ]; then
|
||||
echo Provide password:
|
||||
read -s pass
|
||||
fi
|
||||
echo $pass
|
Reference in a new issue