Created
September 5, 2016 17:14
-
-
Save tetherit/938301d93206e5f7d3558257ba3efed0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: production-timeboxes | |
remote_user: root | |
gather_facts: false | |
force_handlers: true | |
roles: | |
- timebox-bootstrap # uses "local" and "chroot" for connection | |
- hosts: production-timeboxes | |
remote_user: root | |
gather_facts: false | |
force_handlers: true | |
connection: chroot | |
roles: | |
- { role: common, tags: [ 'minimal' ] } | |
- { role: timebox, tags: [ 'timebox'] } | |
- { role: timeagent, 'chroot', tags: [ 'timeagent' ]} | |
- hosts: production-timeboxes | |
remote_user: root | |
gather_facts: false | |
force_handlers: true | |
connection: local | |
tasks: | |
- { include: roles/timebox-bootstrap/tasks/umount.yml } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment