Confirmed users
502
edits
(add link to source repo) |
(adds how to restart bbb with ansible) |
||
Line 85: | Line 85: | ||
=== How to restart the services === | === How to restart the services === | ||
'''with ansible (much easier!)''' | |||
pip install ansible and checkout releng ansible repo: https://wiki.mozilla.org/ReleaseEngineering/How_To/Use_Ansible_for_AdHoc_Updates#Set_it_up_locally: | |||
then run: | |||
ansible-playbook -v -i bbb-inventory.ini bbb_restart.yml -l all | |||
'''manually''' | |||
running the following as root (don't forget it runs on three different machines): | |||
for i in bblistener tclistener reflector; do supervisorctl restart buildbot_bridge_$i; done | for i in bblistener tclistener reflector; do supervisorctl restart buildbot_bridge_$i; done | ||