mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2024-11-22 15:32:18 +00:00
main: make key input required
This commit is contained in:
parent
9dfdfbebf6
commit
3b5446324b
1 changed files with 8 additions and 4 deletions
12
main.sh
12
main.sh
|
@ -11,16 +11,20 @@ if test -z "$playbook"; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if test -n "$key"; then
|
||||
mkdir -p ~/.ssh
|
||||
echo "$key" > ~/.ssh/id_rsa
|
||||
chmod 400 ~/.ssh/id_rsa
|
||||
if test -z "$key"; then
|
||||
echo "You need to specify 'key' input (SSH private key)"
|
||||
exit 1
|
||||
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
|
||||
export ANSIBLE_PRIVATE_KEY_FILE="$HOME/.ssh/id_rsa"
|
||||
|
||||
ansible-playbook $options $playbook
|
Loading…
Reference in a new issue