Skip to content

Commit

Permalink
Fix paths and packages for the shib2 module on Debian pre Jessie
Browse files Browse the repository at this point in the history
  • Loading branch information
cholyoak committed Jan 11, 2016
1 parent 657dbd6 commit 4ae775a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -221,13 +221,20 @@
'python' => 'libapache2-mod-python',
'rpaf' => 'libapache2-mod-rpaf',
'security' => 'libapache2-modsecurity',
'shib2' => 'libapache2-mod-shib2',
'suphp' => 'libapache2-mod-suphp',
'wsgi' => 'libapache2-mod-wsgi',
'xsendfile' => 'libapache2-mod-xsendfile',
'shib2' => 'libapache2-mod-shib2',
}
if $::osfamily == 'Debian' and versioncmp($::operatingsystemrelease, '8') < 0 {
$shib2_lib = 'mod_shib_22.so'
} else {
$shib2_lib = 'mod_shib2.so'
}
$mod_libs = {
'php5' => 'libphp5.so',
'php5' => 'libphp5.so',
'shib2' => $shib2_lib
}
$conf_template = 'apache/httpd.conf.erb'
$keepalive = 'Off'
Expand Down

0 comments on commit 4ae775a

Please sign in to comment.