fix arch role

This commit is contained in:
2026-04-03 16:50:35 +02:00
parent 9166877015
commit 6351939804

View File

@@ -2,12 +2,23 @@
---
# tasks to setup arch hosts
# Base setup
# Setup Crontab
- name: Install cronie
community.general.pacman:
name: cronie
state: present
- name: Run cronie
ansible.builtin.systemd_service:
state: started
name: cronie
- name: Enable service cronie and ensure it is not masked
ansible.builtin.systemd_service:
name: cronie
enabled: true
masked: no
# Pacman
- name: Run full system upgrade
community.general.pacman: