Puppet Class: dariahshibboleth::install
- Inherits:
- dariahshibboleth
- Defined in:
- manifests/install.pp
Overview
This private class installs the shibboleth SP.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'manifests/install.pp', line 3
class dariahshibboleth::install inherits dariahshibboleth {
case $facts['os']['family'] {
'Debian': {
$switch_repo_location = $facts['os']['name'] ?
{
'Ubuntu' => 'http://pkg.switch.ch/switchaai/ubuntu',
'Debian' => 'http://pkg.switch.ch/switchaai/debian',
default => undef,
}
apt::source { 'SWITCHaai-swdistrib':
location => $switch_repo_location,
repos => 'main',
key => {
'id' => '294E37D154156E00FB96D7AA26C3C46915B76742',
'source' => 'http://pkg.switch.ch/switchaai/SWITCHaai-swdistrib.asc',
},
include => {
'src' => false,
},
before => Package['shibboleth'],
}
}
default: {
fail("Module dariahshibboleth does not support ${facts['os']['family']}!")
}
}
package { 'shibboleth':
ensure => 'installed',
}
file { '/opt/dariahshibboleth':
ensure => directory,
owner => 'root',
group => 'root',
mode => '0755',
}->
file { '/opt/dariahshibboleth/accessdenied.html':
ensure => directory,
owner => 'root',
group => 'root',
mode => '0644',
source => 'puppet:///modules/dariahshibboleth/opt/dariahshibboleth/accessdenied.html',
}
}
|