summaryrefslogtreecommitdiff
path: root/manifests/params.pp
diff options
context:
space:
mode:
authorRaffael Schmid <raffael@yux.ch>2013-01-19 15:29:29 +0100
committerRaffael Schmid <raffael@yux.ch>2013-01-19 15:29:29 +0100
commitc769e17c89d1889889c444213ef9a49bda5a041e (patch)
treef16e67ad320cb1b499bad31a8ed9d73592b4da05 /manifests/params.pp
parent75d3fd74c83a7c172211c8ea681f527652ef4521 (diff)
use nogroup on Debian based machines, nobody on RedHat ones
Diffstat (limited to 'manifests/params.pp')
-rw-r--r--manifests/params.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
new file mode 100644
index 0000000..328f2cf
--- /dev/null
+++ b/manifests/params.pp
@@ -0,0 +1,8 @@
+class openvpn::params {
+
+ $group = $::osfamily ? {
+ 'RedHat' => 'nobody',
+ default => 'nogroup'
+ }
+
+}