Update README

This commit is contained in:
Jordan Pryde 2016-07-07 16:32:05 -04:00
parent 98118d1add
commit 2ce7af3803
1 changed files with 10 additions and 3 deletions

13
README
View File

@ -7,8 +7,15 @@
Ansible playbooks of the University of Waterloo Computer Science Club. Ansible playbooks of the University of Waterloo Computer Science Club.
** Usage ** ** Usage **
To run a playbook and request a user's ssh/sudo password:
To run playbooks which require authentication as 'root': `ansible-playbook -kK -b test-playbook.yml`
1. kadmin -p sysadmin/admin To run a playbook as a different user (for example to provision a new system
2. execute the ansible playbook that doesn't have sssd yet):
`ansible-playbook -kK -b -u local_sysadmin test-playbook.yml`
To run a playbook starting at a certain spot:
`ansible-playbook -kK -b install-office-terminal.yml --start-at-task='enable magic sysrq'`