main: make key input required

This commit is contained in:
Dawid Dziurla 2020-03-21 20:54:44 +01:00
parent 9dfdfbebf6
commit 3b5446324b
No known key found for this signature in database
GPG Key ID: 7B6D8368172E9B0B

12
main.sh
View File

@ -11,16 +11,20 @@ if test -z "$playbook"; then
exit 1 exit 1
fi fi
if test -n "$key"; then if test -z "$key"; then
mkdir -p ~/.ssh echo "You need to specify 'key' input (SSH private key)"
echo "$key" > ~/.ssh/id_rsa exit 1
chmod 400 ~/.ssh/id_rsa
fi fi
mkdir -p "$HOME/.ssh"
echo "$key" > "$HOME/.ssh/id_rsa"
chmod 600 "$HOME/.ssh/id_rsa"
echo "$options" echo "$options"
echo "$playbook" echo "$playbook"
export ANSIBLE_HOST_KEY_CHECKING=False export ANSIBLE_HOST_KEY_CHECKING=False
export ANSIBLE_FORCE_COLOR=True export ANSIBLE_FORCE_COLOR=True
export ANSIBLE_PRIVATE_KEY_FILE="$HOME/.ssh/id_rsa"
ansible-playbook $options $playbook ansible-playbook $options $playbook