Skip to content
Snippets Groups Projects

Pacman keyring init

Merged Amin Vakil requested to merge aminvakil/infrastructure:pacman_keyring_init into master
All threads resolved!
Files
2
@@ -150,8 +150,16 @@
register: chroot_grub_mkconfig
changed_when: "chroot_grub_mkconfig.rc == 0"
- name: setup pacman-init.service on first boot
template:
src: pacman-init.service
dest: /etc/systemd/system/pacman-init.service
owner: root
group: root
mode: 0644
- name: enable services inside chroot
command: chroot /mnt systemctl enable sshd systemd-networkd systemd-resolved fstrim.timer
command: chroot /mnt systemctl enable sshd systemd-networkd systemd-resolved fstrim.timer pacman-init
register: chroot_systemd_services
changed_when: "chroot_systemd_services.rc == 0"
Loading