CSC Ansible Playbooks
Go to file
Edwin Zhang f4933d7d76 Remove old playbooks 2022-07-31 08:38:08 -04:00
files Remove old playbooks 2022-07-31 08:38:08 -04:00
fingerprints distributed SSH keys to all machines, updated hosts, enabled magic sysrq, ignored retries 2016-07-06 16:22:48 -04:00
plugins/callback/log_plays Initial commit 2015-12-08 00:23:27 -05:00
roles Remove old playbooks 2022-07-31 08:38:08 -04:00
.gitignore Ignore venv 2022-07-16 23:02:58 -04:00
.gitmodules Remove generate-hosts and ignore it 2016-07-05 20:53:53 -04:00
README Update README 2016-07-07 16:32:05 -04:00
ansible.cfg Switch to yaml inventory 2022-07-17 02:33:43 -04:00
bootstrap-packages.sh created roles for office terminal install, tested up to auth 2016-06-02 00:47:31 -04:00
disable-login.yml A whole bunch of random playbooks I put together / used 2016-02-29 17:22:45 -05:00
enable-login.yml A whole bunch of random playbooks I put together / used 2016-02-29 17:22:45 -05:00
fix-ssh-perms.yml Some minor fixes and new scripts 2016-08-06 14:54:14 -04:00
gather-ssh-fingerprints.yml A whole bunch of random playbooks I put together / used 2016-02-29 17:22:45 -05:00
generate-fingerprints A whole bunch of random playbooks I put together / used 2016-02-29 17:22:45 -05:00
install-general-use-container.yml Configure NTP 2016-12-11 12:05:48 -05:00
install-office-terminal.yml Update IPv6 configuration 2016-11-28 18:54:06 -05:00
install-syscom-container.yml Stuff that I haven't committed yet 2017-08-08 16:45:37 -04:00
install-syscom.yml Stuff that I haven't committed yet 2017-08-08 16:45:37 -04:00
inventory.yaml Inventory Update 2022-07-17 02:33:43 -04:00
mount-scratch.yml A whole bunch of random playbooks I put together / used 2016-02-29 17:22:45 -05:00
mount-users.yml A whole bunch of random playbooks I put together / used 2016-02-29 17:22:45 -05:00
resolv.yml Stuff that I haven't committed yet 2017-08-08 16:45:37 -04:00
run-container.yml Configure NTP 2016-12-11 12:05:48 -05:00
run-core.yml Configure NTP 2016-12-11 12:05:48 -05:00
test-playbook.yml Removed playbooks that have been superseded by roles written for the install-office-terminal.yml playbook 2016-07-07 16:13:18 -04:00
unmount-nfs.yml A whole bunch of random playbooks I put together / used 2016-02-29 17:22:45 -05:00
update-rootdotfiles.yml Add root dotfiles and update-rootdotfiles playbook (which will need to be integrated into standard build 2016-11-26 01:27:43 -05:00
update-ssh_known_hosts.yml Update ssh_known_hosts 2017-08-13 12:23:08 -04:00
upgrade-office.yml Workaround lightdm bug 2016-07-19 16:23:41 -04:00
upgrade.yml Stuff that I haven't committed yet 2017-08-08 16:45:37 -04:00
webnode.yml Configure NTP 2016-12-11 12:05:48 -05:00

README

           ____ ____   ____      _              _ _     _
          / ___/ ___| / ___|    / \   _ __  ___(_) |__ | | ___
         | |   \___ \| |       / _ \ | '_ \/ __| | '_ \| |/ _ \
         | |___ ___) | |___   / ___ \| | | \__ \ | |_) | |  __/
          \____|____/ \____| /_/   \_\_| |_|___/_|_.__/|_|\___|

Ansible playbooks of the University of Waterloo Computer Science Club.

** Usage **
To run a playbook and request a user's ssh/sudo password:

`ansible-playbook -kK -b test-playbook.yml`

To run a playbook as a different user (for example to provision a new system 
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'`