From c443842eae41fb28d5608acfd303106e5f24798a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Isma=C3=ABl=20Bouya?= Date: Sat, 17 Mar 2018 10:48:34 +0100 Subject: [PATCH] Add cron to update pacman keys --- modules/base_installation/manifests/cronie.pp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/base_installation/manifests/cronie.pp b/modules/base_installation/manifests/cronie.pp index 72f2d8f..e8d5dfd 100644 --- a/modules/base_installation/manifests/cronie.pp +++ b/modules/base_installation/manifests/cronie.pp @@ -29,5 +29,12 @@ class base_installation::cronie inherits base_installation { user => root, special => "reboot" } + cron { 'pacman_keys': + ensure => present, + command => "pacman-key --populate archlinux", + user => root, + minute => "0", + hour => "1", + } } } -- 2.41.0