From 66de556d83f7539070564e85c5549e76e160d094 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 8 Dec 2020 20:55:24 +0200 Subject: [PATCH] Add a "nomads" group of hosts Hosts that I want to run common config stuff like SSH, firewalls, etc. --- nomads.yml | 12 ++++++++++++ site.yml | 1 + 2 files changed, 13 insertions(+) create mode 100644 nomads.yml diff --git a/nomads.yml b/nomads.yml new file mode 100644 index 0000000..a76c913 --- /dev/null +++ b/nomads.yml @@ -0,0 +1,12 @@ +--- +# file: nomads.yml + +- hosts: nomads + become: yes + roles: + - common + - munin + vars_files: + - vars/ipsets.yml + +# vim: set sw=2 ts=2: diff --git a/site.yml b/site.yml index 311dc89..2fba82c 100644 --- a/site.yml +++ b/site.yml @@ -1,6 +1,7 @@ --- # file: site.yml +- import_playbook: nomads.yml - import_playbook: web.yml # vim: set sw=2 ts=2: