summaryrefslogtreecommitdiff
path: root/puppet/modules/ntp/tests
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-06-09 17:33:06 +0200
committervarac <varacanero@zeromail.org>2016-06-14 12:05:18 +0200
commitdf16f0bae5f12aae680ea8dcdec0befd27e66e2d (patch)
treee2b1af75fbb9ba1e7369cf9739a3f48105ffe704 /puppet/modules/ntp/tests
parenta86a9bbaa31c0859abf0b7f8c49f58b0a68ad134 (diff)
git subrepo clone https://leap.se/git/puppet_ntp puppet/modules/ntp
subrepo: subdir: "puppet/modules/ntp" merged: "8a554ab" upstream: origin: "https://leap.se/git/puppet_ntp" branch: "master" commit: "8a554ab" git-subrepo: version: "0.3.0" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "cb2995b"
Diffstat (limited to 'puppet/modules/ntp/tests')
-rw-r--r--puppet/modules/ntp/tests/init.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/puppet/modules/ntp/tests/init.pp b/puppet/modules/ntp/tests/init.pp
new file mode 100644
index 00000000..e6d9b537
--- /dev/null
+++ b/puppet/modules/ntp/tests/init.pp
@@ -0,0 +1,11 @@
+node default {
+
+ notify { 'enduser-before': }
+ notify { 'enduser-after': }
+
+ class { 'ntp':
+ require => Notify['enduser-before'],
+ before => Notify['enduser-after'],
+ }
+
+}