summaryrefslogtreecommitdiff
path: root/manifests/mod_macro.pp
diff options
context:
space:
mode:
authorMarcel Haerry <haerry@puzzle.ch>2009-06-16 14:20:48 +0200
committerMarcel Haerry <haerry@puzzle.ch>2009-06-16 14:20:48 +0200
commite7e1bd007f4ac5ac324192d6e35da72ee4d6626b (patch)
tree18d129dad614f5c91d91eb466a9515aa2f727840 /manifests/mod_macro.pp
parent4e97d1e5a61f111beecaa9bc7e366d7ff567a5ef (diff)
introduce usage of mod_macro
Diffstat (limited to 'manifests/mod_macro.pp')
-rw-r--r--manifests/mod_macro.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/mod_macro.pp b/manifests/mod_macro.pp
new file mode 100644
index 0000000..acee280
--- /dev/null
+++ b/manifests/mod_macro.pp
@@ -0,0 +1,8 @@
+class apache::mod_macro {
+ include apache
+ package{mod_macro:
+ ensure => installed,
+ require => Package['apache'],
+ notify => Service['apache'],
+ }
+}