summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp9
1 files changed, 6 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 2767783..f2b3bd3 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -19,7 +19,8 @@ class strongswan(
case $::lsbmajdistrelease {
'5': {
$config_dir = '/etc/ipsec.d'
- $cert_dir = '/etc/ipsec.d'
+ $cert_dir = '/etc/ipsec.d'
+ $binary = '/usr/sbin/ipsec'
class{'strongswan::centos::five':
require => Class['monkeysphere'],
@@ -27,7 +28,8 @@ class strongswan(
}
default: {
$config_dir = '/etc/strongswan'
- $cert_dir = '/etc/strongswan/ipsec.d'
+ $cert_dir = '/etc/strongswan/ipsec.d'
+ $binary = '/usr/sbin/strongswan'
class{'strongswan::centos::six':
require => Class['monkeysphere'],
}
@@ -36,7 +38,8 @@ class strongswan(
}
default: {
$config_dir = '/etc/ipsec.d'
- $cert_dir = '/etc/ipsec.d'
+ $cert_dir = '/etc/ipsec.d'
+ $binary = '/usr/sbin/ipsec'
class{'strongswan::base':
require => Class['monkeysphere'],
}