Add generic pacman configuration
This commit is contained in:
parent
4aa78f0c48
commit
26562383cb
2 changed files with 123 additions and 1 deletions
|
|
@ -24,9 +24,27 @@
|
|||
mode: "0600"
|
||||
notify: disable reflector
|
||||
|
||||
- name: copy pacman configuration
|
||||
become: yes
|
||||
template:
|
||||
src: "pacman.j2"
|
||||
dest: "/etc/pacman.conf"
|
||||
owner: root
|
||||
group: root
|
||||
mode: "0644"
|
||||
|
||||
- name: create extra conf
|
||||
become: yes
|
||||
file:
|
||||
path: "/etc/pacman.d/extra.conf"
|
||||
owner: root
|
||||
group: root
|
||||
state: touch
|
||||
mode: "0644"
|
||||
|
||||
# TODO
|
||||
# - pacman setup depending on platform (see include section for common options)
|
||||
# - laptop power saving configuration
|
||||
# - laptop pacman specific configuration
|
||||
|
||||
- include_tasks: systemd.yml
|
||||
- include_tasks: gpg.yml # TODO
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue