From bc1bfc1eff37f0dc5a4c3d166ae80e5386e77010 Mon Sep 17 00:00:00 2001 From: Seth Vidal Date: Thu, 25 Apr 2013 16:38:59 +0000 Subject: [PATCH] add a playbook to let me run the cloud post-provisioning manually --- playbooks/transient-post-provision.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 playbooks/transient-post-provision.yml diff --git a/playbooks/transient-post-provision.yml b/playbooks/transient-post-provision.yml new file mode 100644 index 0000000000..4c9c002b45 --- /dev/null +++ b/playbooks/transient-post-provision.yml @@ -0,0 +1,16 @@ +- name: provision instance + hosts: $target + user: root + gather_facts: True + + vars_files: + - /srv/web/infra/ansible/vars/global.yml + - ${private}/vars.yml + - ${vars}/${ansible_distribution}.yml + + tasks: + - include: $tasks/growroot_cloud.yml + - include: $tasks/cloud_setup_basic.yml + + handlers: + - include: $handlers/restart_services.yml