From 78d9004be7f798b181d4c215410507028bddd09e Mon Sep 17 00:00:00 2001 From: KemoNine Date: Tue, 4 Aug 2020 23:09:19 +0000 Subject: [PATCH] Cleanup paths and file names --- deploy-frames.sh | 2 +- deploy-software-updates.sh | 2 +- deploy-wireguard.sh | 2 +- update-software.yml => playbook-update-software.yml | 0 wireguard.yml => playbook-wireguard.yml | 0 setup-ansible-host.sh | 2 +- setup-ansible.yml => setup-ansible-host.yml | 0 7 files changed, 4 insertions(+), 4 deletions(-) rename update-software.yml => playbook-update-software.yml (100%) rename wireguard.yml => playbook-wireguard.yml (100%) rename setup-ansible.yml => setup-ansible-host.yml (100%) 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