Change apply to use --connection=local and add apply-all

This commit is contained in:
Gary Talent 2017-05-23 00:14:11 -05:00
parent b463bb9ea4
commit d2e65de1bc

View File

@ -1,5 +1,9 @@
apply:
ansible-playbook debian.yml -u root -i "127.0.0.1,"
su -c "ansible-playbook debian.yml -u root -i '127.0.0.1,' --connection=local"
apply-all:
ansible-playbook debian.yml -u root -i 'andraia,'
init-local:
su -c "mkdir -p /root/.ssh/ && cat ~gary/.ssh/id_rsa.pub >> /root/.ssh/authorized_key"
init:
ssh root@127.0.0.1 mkdir -p .ssh
cat ~/.ssh/id_rsa.pub | ssh root@127.0.0.1 "cat >> .ssh/authorized_key"