12 lines
255 B
YAML
12 lines
255 B
YAML
|
|
---
|
||
|
|
- name: Prepare
|
||
|
|
hosts: all
|
||
|
|
become: true
|
||
|
|
gather_facts: false
|
||
|
|
tasks:
|
||
|
|
- name: Install procps so ansible.posix.sysctl can find the sysctl binary
|
||
|
|
ansible.builtin.apt:
|
||
|
|
name: procps
|
||
|
|
state: present
|
||
|
|
update_cache: true
|