mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2024-12-29 03:26:09 -07:00
main: don't require directory input to be set
This commit is contained in:
parent
7294666400
commit
c94ab57c30
7
main.sh
7
main.sh
|
@ -12,17 +12,14 @@ if test -z "$playbook"; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
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
|
if test -z "$key"; then
|
||||||
echo "You need to specify 'key' input (SSH private key)"
|
echo "You need to specify 'key' input (SSH private key)"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if test -n "$directory"; then
|
||||||
cd "$directory"
|
cd "$directory"
|
||||||
|
fi
|
||||||
|
|
||||||
mkdir -p "$HOME/.ssh"
|
mkdir -p "$HOME/.ssh"
|
||||||
echo "$key" > "$HOME/.ssh/id_rsa"
|
echo "$key" > "$HOME/.ssh/id_rsa"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user