playground/ansible-playbooks/del-user-group.yml

8 lines
170 B
YAML
Raw Permalink Normal View History

- hosts: all
remote_user: hyung-hwan
tasks:
- name: delete user group 'tomcat'
group: name=tomcat state=absent
become: true
become_method: sudo