12 lines
190 B
YAML
12 lines
190 B
YAML
|
---
|
||
|
|
||
|
- hosts: '{{ ip_addr }}'
|
||
|
become: yes
|
||
|
become_method: sudo
|
||
|
gather_facts: yes
|
||
|
|
||
|
tasks:
|
||
|
|
||
|
- name: "[CONFIG SUDOERS] Config sudoers"
|
||
|
import_role:
|
||
|
name: config-sudoers
|