summaryrefslogtreecommitdiff
path: root/manifests/definitions/mailalias.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2012-02-16 16:51:56 +0100
committerSilvio Rhatto <rhatto@riseup.net>2012-04-07 13:56:47 -0300
commit59010a1c304801db6423f67d656399478fc603f0 (patch)
tree2ff29f6c26451f2dd62f53a3a5abb5b09bef7ab4 /manifests/definitions/mailalias.pp
parent462db65ec48b6398c9a04a88cc4c197eb73f34fa (diff)
put classes and defines in the proper place
To take advantage of puppet's autoloading feature, which will be mandatory sooner or later. We move all the files in their appropriate place.
Diffstat (limited to 'manifests/definitions/mailalias.pp')
-rw-r--r--manifests/definitions/mailalias.pp32
1 files changed, 0 insertions, 32 deletions
diff --git a/manifests/definitions/mailalias.pp b/manifests/definitions/mailalias.pp
deleted file mode 100644
index cd1af50..0000000
--- a/manifests/definitions/mailalias.pp
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
-== Definition: postfix::mailalias
-
-Wrapper around Puppet mailalias resource, provides newaliases executable.
-
-Parameters:
-- *name*: the name of the alias.
-- *ensure*: present/absent, defaults to present.
-- *recipient*: recipient of the alias.
-
-Requires:
-- Class["postfix"]
-
-Example usage:
-
- node "toto.example.com" {
-
- include postfix
-
- postfix::mailalias { "postmaster":
- ensure => present,
- recipient => 'foo'
- }
-
-*/
-define postfix::mailalias ($ensure = 'present', $recipient) {
- mailalias { "${name}":
- ensure => $ensure,
- recipient => $recipient,
- notify => Exec['newaliases']
- }
-}