Skip to content

Instantly share code, notes, and snippets.

View RoamingQuack's full-sized avatar
🍹

Roaming Quackers RoamingQuack

🍹
View GitHub Profile
- name: Turn OFF and DISABLE various servivces
service:
name="{{ item }}"
state=stopped
enabled=no
with_items: "{{ services_disabled_rhel6 }}"
ignore_errors: yes
register: disableservices
- debug:
var: disableservices