tuttinrete/roles/prelink-preload/tasks/main.yml

21 lines
292 B
YAML
Raw Normal View History

2020-05-22 19:21:38 +02:00
---
# Preload
- apt:
name: preload
state: present
# Prelink
- apt:
name: prelink
state: present
- lineinfile:
path: /etc/default/prelink
regexp: "^PRELINKING=unknown"
line: "PRELINKING=yes"
- shell: /etc/cron.daily/prelink
become: yes
async: 3600
poll: 0