Files
product-demos/playbooks/infrastructure/turn_off_community_grid.yml
2022-02-04 09:21:45 -05: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