From 384ffd957153f65eb4f47b3142d98853c31b4124 Mon Sep 17 00:00:00 2001 From: Jeff McCune Date: Wed, 23 Feb 2011 14:05:56 -0500 Subject: Initial commit --- manifests/README.markdown | 28 ++++++++++++++++++++++++++++ manifests/init.pp | 17 +++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 manifests/README.markdown create mode 100644 manifests/init.pp (limited to 'manifests') diff --git a/manifests/README.markdown b/manifests/README.markdown new file mode 100644 index 0000000..bbf645a --- /dev/null +++ b/manifests/README.markdown @@ -0,0 +1,28 @@ +Manifests +========= + +Module manifest files belong in this directory. + +`init.pp` defines how the module will carry out its tasks in this file. + +Add additional definitions in this directory. Their file paths should match the +definition name; for example, a definition `mydefinition`, defined like this: + + # Definition: mydefinition + # + # This is the mydefinition in the mymodule module. + # + # Parameters: + # + # Actions: + # + # Requires: + # + # Sample Usage: + # + # [Remember: No empty lines between comments and class definition] + define mydefinition { + # ... + } + +Should be found in `mydefinition.pp` in this directory. diff --git a/manifests/init.pp b/manifests/init.pp new file mode 100644 index 0000000..0c12c7e --- /dev/null +++ b/manifests/init.pp @@ -0,0 +1,17 @@ +# Class: ntp +# +# This module manages ntp +# +# Parameters: +# +# Actions: +# +# Requires: +# +# Sample Usage: +# +# [Remember: No empty lines between comments and class definition] +class ntp { + + +} -- cgit v1.2.3