Clear pacman cache
This commit is contained in:
18
ansible/roles/paccache/tasks/main.yml
Normal file
18
ansible/roles/paccache/tasks/main.yml
Normal file
@ -0,0 +1,18 @@
|
||||
- name: Install Pacman utils
|
||||
package:
|
||||
name: pacman-contrib
|
||||
become: true
|
||||
|
||||
- name: Create hooks directory
|
||||
file:
|
||||
path: /etc/pacman.d/hooks/
|
||||
state: directory
|
||||
mode: "0755"
|
||||
become: true
|
||||
|
||||
- name: Install pacman hook
|
||||
template:
|
||||
src: files/paccache.hook
|
||||
dest: /etc/pacman.d/hooks/clean_package_cache.hook
|
||||
mode: "0644"
|
||||
become: true
|
Reference in New Issue
Block a user