From 6ce2aaa8c4bc079dd726c4d1c8b2519a51fb2da3 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Fri, 9 Dec 2016 08:13:00 +0000 Subject: [PATCH] Move ntp and ntpdate incldue into a time module --- manifests/site.pp | 3 +-- modules/time/manifests/init.pp | 4 ++++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 modules/time/manifests/init.pp 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 +} -- 2.20.1