This repository has been archived on 2024-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
setup/util/secret-service-client.sh

9 lines
125 B
Bash
Executable file

#!/bin/bash
pass=`secret-tool lookup ansible_vault setup`
retval=$?
if [ $retval -ne 0 ]; then
read -s pass
fi
echo $pass