Skip to content

Commit

Permalink
Merge pull request #1292 from cholyoak/shib2_debian
Browse files Browse the repository at this point in the history
Fixes paths and packages for the shib2 module on Debian
  • Loading branch information
DavidS committed Jan 11, 2016
2 parents 8a350af + 4ae775a commit ca432ee
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 @@ -224,13 +224,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 ca432ee

Please sign in to comment.