main: don't require directory input to be set

This commit is contained in:
Dawid Dziurla 2020-03-24 22:44:07 +01:00
parent 7294666400
commit c94ab57c30
No known key found for this signature in database
GPG Key ID: 7B6D8368172E9B0B

View File

@ -12,17 +12,14 @@ if test -z "$playbook"; then
exit 1
fi
if test -z "$directory"; then
echo "You need to specify 'directory' input (root Ansible project directory)"
exit 1
fi
if test -z "$key"; then
echo "You need to specify 'key' input (SSH private key)"
exit 1
fi
cd "$directory"
if test -n "$directory"; then
cd "$directory"
fi
mkdir -p "$HOME/.ssh"
echo "$key" > "$HOME/.ssh/id_rsa"