9 lines
125 B
Bash
Executable file
9 lines
125 B
Bash
Executable file
#!/bin/bash
|
|
|
|
pass=`secret-tool lookup ansible_vault atlas`
|
|
retval=$?
|
|
|
|
if [ $retval -ne 0 ]; then
|
|
read -s pass
|
|
fi
|
|
echo $pass
|