diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-03-17 10:48:34 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-03-17 12:06:03 +0100 |
commit | c443842eae41fb28d5608acfd303106e5f24798a (patch) | |
tree | 3419561c1aa1f57dc21f8665e3d9e6d0531d5df9 /modules | |
parent | 62fe8998b5497864d51ed0fe909a0ff60cc1520b (diff) | |
download | Puppet-c443842eae41fb28d5608acfd303106e5f24798a.tar.gz Puppet-c443842eae41fb28d5608acfd303106e5f24798a.tar.zst Puppet-c443842eae41fb28d5608acfd303106e5f24798a.zip |
Add cron to update pacman keys
Diffstat (limited to 'modules')
-rw-r--r-- | modules/base_installation/manifests/cronie.pp | 7 |
1 files changed, 7 insertions, 0 deletions
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 { | |||
29 | user => root, | 29 | user => root, |
30 | special => "reboot" | 30 | special => "reboot" |
31 | } | 31 | } |
32 | cron { 'pacman_keys': | ||
33 | ensure => present, | ||
34 | command => "pacman-key --populate archlinux", | ||
35 | user => root, | ||
36 | minute => "0", | ||
37 | hour => "1", | ||
38 | } | ||
32 | } | 39 | } |
33 | } | 40 | } |