No description
- PHP 68.3%
- HTML 31.7%
| roles | ||
| templates | ||
| .gitignore | ||
| ansible.cfg.dist | ||
| os_update_etc_hosts.yml | ||
| ping_all.yml | ||
| README.adoc | ||
| redis_installation.yml | ||
| requirements.yml | ||
| retwis_installation.yml | ||
| webserver_installation.yml | ||
= Ansible Demo "Retwis"
== Aufbau des Inventars
.Dateien im Inventar
[source]
----
inventory/
├── hosts
└── host_vars
├── demo-db01
│ └── ansible.yml
└── demo-web01
└── ansible.yml
----
.inventory/hosts
[source]
----
[webserver]
demo-web01
[redis]
demo-db01
----
.ansible.yml für einzelne Hosts
[source]
----
---
ansible_user: <ssh-username>
ansible_host: <ip>
----