blob: 7086eaece5692c7a6e57de6866545e9d18a1c9c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
- name: install pacman-contrib
ansible.builtin.package:
name: pacman-contrib
state: present
- name: create hooks directory
ansible.builtin.file:
path: "{{ pacman_hooks_dir }}"
state: directory
mode: "0755"
- name: generate paccache hook
ansible.builtin.template:
src: paccache.hook.j2
dest: "{{ pacman_hooks_dir }}/paccache.hook"
owner: 0
group: 0
mode: "0644"
|