diff options
| author | admin | 2023-12-18 14:49:09 +0100 |
|---|---|---|
| committer | admin | 2023-12-18 14:49:09 +0100 |
| commit | 64dfd20134ee028cc865745d8d8bfec31299ff0a (patch) | |
| tree | 240e1552d24c2ae84d809846d66daef818826420 /site.yml | |
| download | ansible-64dfd20134ee028cc865745d8d8bfec31299ff0a.tar.gz | |
initial commit
Diffstat (limited to 'site.yml')
| -rw-r--r-- | site.yml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/site.yml b/site.yml new file mode 100644 index 0000000..d0c9764 --- /dev/null +++ b/site.yml @@ -0,0 +1,45 @@ +--- + +# ============================================================ +# Common Rules +# gelten fuer alle Server +# (koennen aber auch einzeln aufgerufen werden) +# ============================================================ + +- name: apt + roles: + - apt + hosts: all + tags: + - apt + - common + +# ------------------------------------------------------------ + +- name: packages + hosts: all + roles: + - packages + tags: + - packages + - common + +# ------------------------------------------------------------ + +- name: php + hosts: all + roles: + - php + tags: + - php + - common + +# ------------------------------------------------------------ + +- name: common-linux + hosts: all + roles: + - common-linux + tags: + - common-linux + - common |
