mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2024-11-22 15:32:18 +00:00
34 lines
No EOL
620 B
Bash
Executable file
34 lines
No EOL
620 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
playbook="$INPUT_PLAYBOOK"
|
|
directory="$INPUT_DIRECTORY"
|
|
key="$INPUT_KEY"
|
|
options="$INPUT_OPTIONS"
|
|
|
|
if test -z "$playbook"; then
|
|
echo "You need to specify 'playbook' input (Ansible playbook filepath)"
|
|
exit 1
|
|
fi
|
|
|
|
if test -z "$key"; then
|
|
echo "You need to specify 'key' input (SSH private key)"
|
|
exit 1
|
|
fi
|
|
|
|
if test -n "$directory"; then
|
|
cd "$directory"
|
|
fi
|
|
|
|
mkdir -p "$HOME/.ssh"
|
|
echo "$key" > "$HOME/.ssh/id_rsa"
|
|
chmod 600 "$HOME/.ssh/id_rsa"
|
|
|
|
echo "$options"
|
|
echo "$playbook"
|
|
|
|
export ANSIBLE_HOST_KEY_CHECKING=False
|
|
export ANSIBLE_FORCE_COLOR=True
|
|
|
|
ansible-playbook $options $playbook |