Start adding pacman hooks to pacman role

This commit is contained in:
flyingscorpio@clevo 2022-03-06 12:07:01 +01:00
parent c40f25a53e
commit 52072bfbbb
2 changed files with 7 additions and 2 deletions

View file

@ -19,8 +19,6 @@ mariadb:
condition: "sudo find /var/lib/mysql -mindepth 1 | read"
pacman_hooks:
- run:
- sudo mkdir -p /etc/pacman.d/hooks
- run:
command: sudo ln -rsi dotfiles/pacman_hooks/borg_backup.hook /etc/pacman.d/hooks/borg_backup.hook
condition: "[[ $(uname -n) = 'arch-desktop' ]]"

View file

@ -35,3 +35,10 @@
regexp: "#VerbosePkgLists"
replace: VerbosePkgLists
backup: true
- name: Make sure hooks directory exists
become: true
file:
path: /etc/pacman.d/hooks
state: directory
mode: 0755