diff --git a/README.md b/README.md index 104dbce..4d2f6f0 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,16 @@ -configz +## configz ======= Yet another ansible's playbook repository -roles +## playbooks +====== +* postint.yml + * run common role to install you packages, deploy ssh, keys, ... +* posting-full.yml + * use roles common, xymon-client and rudder-node to have a fully compliant server + +## roles ====== * Common @@ -61,7 +68,7 @@ roles * you need a working rudder-server (https://www.rudder-project.org/doc-4.1/_install_rudder_server.html) * use rudder_server variable to configure your rudderserver IP (rudder advice to use IP addresses instead of DNS) -example host file +## example host file ===== ```yaml diff --git a/postint-full.yml b/postint-full.yml new file mode 100644 index 0000000..3593949 --- /dev/null +++ b/postint-full.yml @@ -0,0 +1,14 @@ +--- +# Playbook permettant de deployer un hote complet avec les roles common, xymon-client et rudder-node + +- name: Deployer un hote complet avec common, xymon-client et rudder-node + hosts: all + user: root + gather_facts: yes + + roles: + - common + - xymon-client + - rudder-node + +# vim: set textwidth=0 ft=yaml ts=2 sw=2 expandtab: