ansible-playbooks

another attempt to have everything organized ...
git clone https://git.e1e0.net/ansible-playbooks.git
Log | Files | Refs | README | LICENSE

commit e0ffcbfd36f9b172134228037277539f93acd190
parent f1fbfc02cc387327f238cb96309e2ac630a3074b
Author: Paco Esteban <paco@e1e0.net>
Date:   Fri, 20 Dec 2019 20:23:25 +0100

add playbooks for all the "node roles".

Only shitty stuff for now.

Diffstat:
Ahome-fw.yml | 10++++++++++
Amailserver.yml | 10++++++++++
Autils.yml | 10++++++++++
Awebsite.yml | 10++++++++++
4 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/home-fw.yml b/home-fw.yml @@ -0,0 +1,10 @@ +--- +- name: Install shitty stuff + hosts: fw + remote_user: paco + become: yes + become_method: doas + roles: + - motd-figlet + vars: + - motd_figlet_group: wheel diff --git a/mailserver.yml b/mailserver.yml @@ -0,0 +1,10 @@ +--- +- name: Install shitty stuff + hosts: mail + remote_user: paco + become: yes + become_method: doas + roles: + - motd-figlet + vars: + - motd_figlet_group: wheel diff --git a/utils.yml b/utils.yml @@ -0,0 +1,10 @@ +--- +- name: Install shitty stuff + hosts: utils + remote_user: paco + become: yes + become_method: doas + roles: + - motd-figlet + vars: + - motd_figlet_group: wheel diff --git a/website.yml b/website.yml @@ -0,0 +1,10 @@ +--- +- name: Install shitty stuff + hosts: web + remote_user: paco + become: yes + become_method: doas + roles: + - motd-figlet + vars: + - motd_figlet_group: wheel