diff options
author | binary <me@rgoncalves.se> | 2020-11-18 09:38:36 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2020-11-18 09:38:36 +0100 |
commit | 541d963cca366cb4541de26c8b691a2b273cfa94 (patch) | |
tree | e523ce2316a747f828d80e35a2ad42042ffd6b3b /group_vars | |
parent | 9f69010653dfdb6b76f60775642cd77f734f80ac (diff) | |
download | infrastructure-541d963cca366cb4541de26c8b691a2b273cfa94.tar.gz |
Refactor group/host/inventory in sub-files
Diffstat (limited to 'group_vars')
-rw-r--r-- | group_vars/alpine.yml | 18 | ||||
-rw-r--r-- | group_vars/debian.yml | 18 | ||||
-rw-r--r-- | group_vars/freebsd.yml | 19 | ||||
-rw-r--r-- | group_vars/openbsd.yml | 19 |
4 files changed, 74 insertions, 0 deletions
diff --git a/group_vars/alpine.yml b/group_vars/alpine.yml new file mode 100644 index 0000000..8e529c0 --- /dev/null +++ b/group_vars/alpine.yml @@ -0,0 +1,18 @@ + +# alpine.yml ~~ group_vars/ +# alpine machines + +--- + +ansible_become_method: "sudo" + +user_op: "puffy" + +group_root: "root" + +path_zsh: "/usr/bin/zsh" +path_zshconfig: "/etc/zsh/zshrc" +path_tmuxconfig: "/etc/tmux.conf" + +os_type: "linux" +os_distribution: "alpine" diff --git a/group_vars/debian.yml b/group_vars/debian.yml new file mode 100644 index 0000000..f8bcf20 --- /dev/null +++ b/group_vars/debian.yml @@ -0,0 +1,18 @@ + +# alpine.yml ~~ group_vars/ +# alpine machines + +--- + +ansible_become_method: "sudo" + +user_op: "puffy" + +group_root: "root" + +path_zsh: "/usr/bin/zsh" +path_zshconfig: "/etc/zsh/zshrc" +path_tmuxconfig: "/etc/tmux.conf" + +os_type: "linux" +os_distribution: "debian" diff --git a/group_vars/freebsd.yml b/group_vars/freebsd.yml new file mode 100644 index 0000000..fc86360 --- /dev/null +++ b/group_vars/freebsd.yml @@ -0,0 +1,19 @@ + +# freebsd.yml ~~ group_vars/ +# freebsd machines + +--- + +ansible_become_method: "doas" + +user_op: "puffy" + +group_root: "wheel" + +path_zsh: "/usr/local/bin/zsh" +path_zshconfig: "/usr/local/etc/zshrc" +path_tmuxconfig: "/usr/local/etc/tmux.conf" + +os_type: "bsd" +os_distribution: "freebsd" + diff --git a/group_vars/openbsd.yml b/group_vars/openbsd.yml new file mode 100644 index 0000000..520160b --- /dev/null +++ b/group_vars/openbsd.yml @@ -0,0 +1,19 @@ + +# openbsd.yml ~~ group_vars/ +# openbsd machines + +--- + +ansible_become_method: "doas" + +user_op: "puffy" + +group_root: "wheel" + +path_zsh: "/usr/local/bin/zsh" +path_zshconfig: "/etc/zshrc" +path_tmuxconfig: "/etc/tmux.conf" + +os_type: "bsd" +os_distribution: "openbsd" + |