You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
272 B
YAML
12 lines
272 B
YAML
7 years ago
|
---
|
||
|
|
||
|
- name: install cronie
|
||
|
pacman: name=cronie state=present
|
||
|
|
||
|
- name: activate cronie.service
|
||
|
service: name=cronie enabled=yes state=started
|
||
|
|
||
|
- name: enable systemd ressource accounting
|
||
|
command: systemctl set-property cronie CPUAccounting=yes MemoryAccounting=yes
|
||
|
|