From: Peter Palfrader Date: Fri, 9 Dec 2016 08:13:00 +0000 (+0000) Subject: Move ntp and ntpdate incldue into a time module X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fdsa-puppet.git;a=commitdiff_plain;h=6ce2aaa8c4bc079dd726c4d1c8b2519a51fb2da3 Move ntp and ntpdate incldue into a time module --- diff --git a/manifests/site.pp b/manifests/site.pp index c06a64117..a02ad6605 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -26,8 +26,7 @@ node default { include ssh include debian-org include monit - include ntp - include ntpdate + include time include ssl include hardware include nagios::client diff --git a/modules/time/manifests/init.pp b/modules/time/manifests/init.pp new file mode 100644 index 000000000..1dcd5ead9 --- /dev/null +++ b/modules/time/manifests/init.pp @@ -0,0 +1,4 @@ +class time { + include ntp + include ntpdate +}