]> git.phdru.name Git - ansible.git/commitdiff
Feat(adjtimex): Install `hwclock` from `util-linux`
authorOleg Broytman <phd@phdru.name>
Sat, 14 May 2022 03:09:17 +0000 (06:09 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 14 May 2022 03:09:17 +0000 (06:09 +0300)
playbooks/roles/adjtimex/tasks/main.yml

index 3f0201a886e975f9fee6c58b49febea6dbb303a5..876bc8f6d6c1f3d95d500fa4dc64e283df6c63b2 100644 (file)
@@ -1,11 +1,12 @@
-- name: Install adjtimex and ntpdate-debian
+- name: Install adjtimex, ntpdate-debian and hwclock
   become: true
   apt:
     autoclean: yes
     autoremove: yes
     cache_valid_time: 3600
     install_recommends: no
-    name: ['adjtimex', 'ntpdate']
+    # Install adjtimex, ntpdate-debian and hwclock
+    name: ['adjtimex', 'ntpdate', 'util-linux']
     state: latest
     update_cache: yes
   when: ansible_facts.os_family == 'Debian'
     update_cache: no
   when: ansible_facts.os_family == 'Debian'
 
-- name: Install adjtimex and ntpdate
+- name: Install adjtimex, ntpdate and hwclock
   become: true
   dnf:
-    name: ['adjtimex', 'ntpdate']
+    # Install adjtimex, ntpdate-debian and hwclock
+    name: ['adjtimex', 'ntpdate', 'util-linux']
     state: latest
     update_cache: yes
   when: ansible_facts.os_family == 'RedHat'