summaryrefslogtreecommitdiff
path: root/manifests/clamav.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-08-19 18:13:31 -0300
committerSilvio Rhatto <rhatto@riseup.net>2010-08-19 18:13:31 -0300
commit2adfee9f7610e0583e6d51effca60f68f2223be2 (patch)
tree52b82333d8b6babeef87908e3d809131f1b7d817 /manifests/clamav.pp
parent05c23e74b9fc3a49a57f4f88271150e79a837a18 (diff)
downloadpuppet-mail-2adfee9f7610e0583e6d51effca60f68f2223be2.tar.gz
puppet-mail-2adfee9f7610e0583e6d51effca60f68f2223be2.tar.bz2
Managing users and groups 'clamav' and 'amavis'
Diffstat (limited to 'manifests/clamav.pp')
-rw-r--r--manifests/clamav.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/clamav.pp b/manifests/clamav.pp
new file mode 100644
index 0000000..b2f8ef4
--- /dev/null
+++ b/manifests/clamav.pp
@@ -0,0 +1,12 @@
+class mail::clamav {
+ group { 'clamav':
+ ensure => present,
+ }
+
+ user { 'clamav':
+ ensure => present,
+ gid => 'clamav',
+ groups => [ 'amavis' ],
+ require => Group['clamav', 'amavis'],
+ }
+}