get disk space data
This commit is contained in:
parent
5b84cafa3d
commit
6ad0af7134
@ -20,12 +20,24 @@
|
|||||||
src: /etc/passwd
|
src: /etc/passwd
|
||||||
dest: "{{ inventory_hostname }}"
|
dest: "{{ inventory_hostname }}"
|
||||||
|
|
||||||
|
- name: Collect disk space data
|
||||||
|
block:
|
||||||
|
- name: lsblk
|
||||||
|
shell: lsblk
|
||||||
|
register: lsblk_output
|
||||||
|
- name: Store results
|
||||||
|
copy:
|
||||||
|
content: "{{lsblk_output.stdout}}"
|
||||||
|
dest: "{{ inventory_hostname }}/lsblk.out"
|
||||||
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Get users
|
- name: Get users
|
||||||
get_users:
|
get_users:
|
||||||
#min_uid: "{{ (ansible_os_family == 'RedHat') | ternary(500,1000) }}"
|
#min_uid: "{{ (ansible_os_family == 'RedHat') | ternary(500,1000) }}"
|
||||||
min_uid: 1000
|
min_uid: 1000
|
||||||
max_uid: 65000
|
max_uid: 65000
|
||||||
register: users_list
|
become: yes
|
||||||
|
register: users_list
|
||||||
|
|
||||||
- name: Give root exclusively the current controller user's SSH key
|
- name: Give root exclusively the current controller user's SSH key
|
||||||
ansible.posix.authorized_key:
|
ansible.posix.authorized_key:
|
||||||
@ -66,7 +78,7 @@
|
|||||||
|
|
||||||
- name: Reset UFW
|
- name: Reset UFW
|
||||||
ufw: state=reset
|
ufw: state=reset
|
||||||
|
|
||||||
- name: Configure ufw defaults
|
- name: Configure ufw defaults
|
||||||
ufw: direction={{ item.direction }} policy={{ item.policy }}
|
ufw: direction={{ item.direction }} policy={{ item.policy }}
|
||||||
with_items:
|
with_items:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user