Files
product-demos/playbooks/infrastructure/turn_off_community_grid.yml
2020-05-21 10:52:06 -04:00

12 lines
251 B
YAML

---
- name: turn off community-grid
hosts: "{{ HOSTS | default('web') }}"
gather_facts: false
become: yes
tasks:
- name: enable and start boinc-client
systemd:
name: boinc-client
state: stopped
enabled: false