diff --git a/deploy-frames.sh b/deploy-frames.sh index 40a7a3a..f830fb0 100755 --- a/deploy-frames.sh +++ b/deploy-frames.sh @@ -3,4 +3,4 @@ # https://www.tauceti.blog/post/kubernetes-the-not-so-hard-way-with-ansible-wireguard/ # https://github.com/githubixx/ansible-role-wireguard -ansible-playbook -u ansible --private-key /opt/ansible/ssh.key -i inventory ./wireguard.yml +ansible-playbook -u ansible --private-key /opt/ansible/ssh.key -i inventory ./playbook-frames.yml diff --git a/deploy-software-updates.sh b/deploy-software-updates.sh index 6985eae..628b03f 100755 --- a/deploy-software-updates.sh +++ b/deploy-software-updates.sh @@ -3,4 +3,4 @@ # https://www.tauceti.blog/post/kubernetes-the-not-so-hard-way-with-ansible-wireguard/ # https://github.com/githubixx/ansible-role-wireguard -ansible-playbook -u ansible --private-key /opt/ansible/ssh.key -i inventory ./update-software.yml +ansible-playbook -u ansible --private-key /opt/ansible/ssh.key -i inventory ./playbook-update-software.yml diff --git a/deploy-wireguard.sh b/deploy-wireguard.sh index 40a7a3a..383166e 100755 --- a/deploy-wireguard.sh +++ b/deploy-wireguard.sh @@ -3,4 +3,4 @@ # https://www.tauceti.blog/post/kubernetes-the-not-so-hard-way-with-ansible-wireguard/ # https://github.com/githubixx/ansible-role-wireguard -ansible-playbook -u ansible --private-key /opt/ansible/ssh.key -i inventory ./wireguard.yml +ansible-playbook -u ansible --private-key /opt/ansible/ssh.key -i inventory ./playbook-wireguard.yml diff --git a/update-software.yml b/playbook-update-software.yml similarity index 100% rename from update-software.yml rename to playbook-update-software.yml diff --git a/wireguard.yml b/playbook-wireguard.yml similarity index 100% rename from wireguard.yml rename to playbook-wireguard.yml diff --git a/setup-ansible-host.sh b/setup-ansible-host.sh index 7e8cbbc..8d77651 100755 --- a/setup-ansible-host.sh +++ b/setup-ansible-host.sh @@ -1,4 +1,4 @@ #!/bin/bash ssh $2@$1 'echo Just ensuring the ssh key is accepted ahead of configuration' -ansible-playbook ./setup-ansible.yml -i $1, -u $2 -k +ansible-playbook ./setup-ansible-host.yml -i $1, -u $2 -k diff --git a/setup-ansible.yml b/setup-ansible-host.yml similarity index 100% rename from setup-ansible.yml rename to setup-ansible-host.yml