aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-03-19 16:21:22 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-03-19 16:21:22 +0100
commit433e9279d165bf225c597834b5a7c7ae64c11a27 (patch)
tree3419561c1aa1f57dc21f8665e3d9e6d0531d5df9 /modules/base_installation
parentb60b98643a6da52c08ced89779964b722230a7db (diff)
parentc443842eae41fb28d5608acfd303106e5f24798a (diff)
downloadPuppet-433e9279d165bf225c597834b5a7c7ae64c11a27.tar.gz
Puppet-433e9279d165bf225c597834b5a7c7ae64c11a27.tar.zst
Puppet-433e9279d165bf225c597834b5a7c7ae64c11a27.zip
Merge branch 'fixes' into dev
Diffstat (limited to 'modules/base_installation')
-rw-r--r--modules/base_installation/manifests/cronie.pp7
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}