From: Ismaƫl Bouya Date: Sat, 17 Mar 2018 09:48:34 +0000 (+0100) Subject: Add cron to update pacman keys X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=c443842eae41fb28d5608acfd303106e5f24798a;p=perso%2FImmae%2FProjets%2FPuppet.git Add cron to update pacman keys --- 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", + } } }