diff options
-rw-r--r-- | README.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..44f72e6 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +## preambule + +Ansible playbooks and roles for managing infrastructure at `<rgoncalves.se>`. + +## usage + +Generate a global playbook with all sub-roles. + +```bash +./generate_all +``` + +Execute a role on a desired host or set of hosts. + +```bash +ansible-playbook play-all.yml --tags "<desired_role>" --l "<desired host or host-pattern>" +``` + +## examples + +Update system and install utility on my primary physical server `OOP-DV-stack0`. + +```bash +ansible-playbook play-all.yml --tags "update,setup_utils" -l "*stack0" +``` |