6 lines
97 B
Shell
Executable file
6 lines
97 B
Shell
Executable file
#!/bin/sh
|
|
set -e
|
|
if ! ssh-add -l >/dev/null
|
|
then
|
|
secret-tool search service dummy >/dev/null
|
|
fi
|