add wg interface to access postgres
This commit is contained in:
parent
82f13757d7
commit
76704b13eb
4 changed files with 28 additions and 2 deletions
9
configure/util/secret-service-client.sh
Executable file
9
configure/util/secret-service-client.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
pass=`secret-tool lookup ansible_vault atlas`
|
||||
retval=$?
|
||||
|
||||
if [ $retval -ne 0 ]; then
|
||||
read -s pass
|
||||
fi
|
||||
echo $pass
|
Reference in a new issue