From bb2ad4b2bb88c47b272a15fa3adf285b84397fe0 Mon Sep 17 00:00:00 2001 From: jreichmann Date: Fri, 28 Jun 2019 21:08:52 +0200 Subject: [PATCH] meta: split into playbook which only runs local and playbook which tries to run on all hosts --- global.yml | 35 +++++++++++++++++++++++++++++++++++ inventory.yaml => local.yml | 0 2 files changed, 35 insertions(+) create mode 100644 global.yml rename inventory.yaml => local.yml (100%) diff --git a/global.yml b/global.yml new file mode 100644 index 0000000..b30f101 --- /dev/null +++ b/global.yml @@ -0,0 +1,35 @@ +--- + +all: + hosts: + carbon: + ansible_host: carbon.int.finallycoffee.eu + iron: + ansible_host: iron.int.finallycoffee.eu + platinum: + ansible_host: platinum.int.finallycoffee.eu + xenon: + ansible_host: xenon.int.finallycoffee.eu + yttrium: + ansible_host: yttrium.int.finallycoffee.eu + vars: + ansible_user: transcaffeine + ansible_become_user: transcaffeine + ansible_become: true + +gnupg: + hosts: + all: + +redshift: + hosts: + all: + +tmux: + hosts: + all: + +vim: + hosts: + all: + diff --git a/inventory.yaml b/local.yml similarity index 100% rename from inventory.yaml rename to local.yml