From dc0f272c04a79d50094ed99a89530fa3b08218bf Mon Sep 17 00:00:00 2001
From: Marty Oehme <marty.oehme@gmail.com>
Date: Fri, 21 Feb 2025 16:02:11 +0100
Subject: [PATCH] feat(base): Add chrony

---
 void_base.yaml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/void_base.yaml b/void_base.yaml
index d601286..ab8fc6f 100644
--- a/void_base.yaml
+++ b/void_base.yaml
@@ -102,6 +102,13 @@
       when: libc_locales_file.stat.exists
       notify: glibc-locales-changed
 
+    - name: Set up chrony for NTP management
+      community.general.xbps:
+        name:
+          - chrony
+        state: present
+      notify: installed-chrony
+
   handlers:
     - name: Regenerate locales
       ansible.builtin.command:
@@ -110,3 +117,12 @@
           - --force
           - libc-locales
       listen: glibc-locales-changed
+
+    - name: Activate chronyd service
+      ansible.builtin.file:
+        force: "yes"
+        src: "/etc/sv/{{ item }}"
+        dest: "/etc/runit/runsvdir/default/{{ item }}"
+        state: link
+      with_items: [chronyd]
+      listen: installed-chrony