From 3e4f308a61aa0b1df4a2811fd3c6ba1a8e82b2ed Mon Sep 17 00:00:00 2001 From: Salt Date: Sun, 21 Jun 2020 10:13:40 -0500 Subject: [PATCH] Add provisioning script Alright, so I didn't see this coming, but it turns out because of the way I have my ansible-pull script set up, I can just lay it out on a host and it'll git pull and manage the rest itself I'm like 'why is this thing taking so long to deploy', and it's because it's deploying twice --- provision.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 provision.yml diff --git a/provision.yml b/provision.yml new file mode 100755 index 0000000..c2854dc --- /dev/null +++ b/provision.yml @@ -0,0 +1,9 @@ +#!/usr/bin/ansible-playbook +# vim:ft=ansible: +--- +- hosts: all + roles: + - role: common + tags: [ common ] + - role: ansible-pull + tags: [ common ]