Start adding pacman hooks to pacman role
This commit is contained in:
parent
c40f25a53e
commit
52072bfbbb
2 changed files with 7 additions and 2 deletions
|
@ -19,8 +19,6 @@ mariadb:
|
||||||
condition: "sudo find /var/lib/mysql -mindepth 1 | read"
|
condition: "sudo find /var/lib/mysql -mindepth 1 | read"
|
||||||
|
|
||||||
pacman_hooks:
|
pacman_hooks:
|
||||||
- run:
|
|
||||||
- sudo mkdir -p /etc/pacman.d/hooks
|
|
||||||
- run:
|
- run:
|
||||||
command: sudo ln -rsi dotfiles/pacman_hooks/borg_backup.hook /etc/pacman.d/hooks/borg_backup.hook
|
command: sudo ln -rsi dotfiles/pacman_hooks/borg_backup.hook /etc/pacman.d/hooks/borg_backup.hook
|
||||||
condition: "[[ $(uname -n) = 'arch-desktop' ]]"
|
condition: "[[ $(uname -n) = 'arch-desktop' ]]"
|
||||||
|
|
|
@ -35,3 +35,10 @@
|
||||||
regexp: "#VerbosePkgLists"
|
regexp: "#VerbosePkgLists"
|
||||||
replace: VerbosePkgLists
|
replace: VerbosePkgLists
|
||||||
backup: true
|
backup: true
|
||||||
|
|
||||||
|
- name: Make sure hooks directory exists
|
||||||
|
become: true
|
||||||
|
file:
|
||||||
|
path: /etc/pacman.d/hooks
|
||||||
|
state: directory
|
||||||
|
mode: 0755
|
||||||
|
|
Loading…
Add table
Reference in a new issue