Skip to content
Snippets Groups Projects
config.pp 544 B
Newer Older
Adam Lewenberg's avatar
Adam Lewenberg committed
class shibb_idp3::config {


  # 1. metadata-providers.xml: points to all our SP metadata.
  file { '/etc/shibboleth-idp/conf/metadata-providers.xml':
    ensure  => present,
    content => template('shibb_idp3/etc/shibboleth-idp/conf/metadata-providers.xml.erb'),
    mode    => '0644',
  }
Adam Lewenberg's avatar
Adam Lewenberg committed

  # 2. access-control.xml: allow access to status page
  file { '/etc/shibboleth-idp/conf/access-control.xml':
    ensure  => present,
    content => template('shibb_idp3/etc/shibboleth-idp/conf/access-control.xml.erb'),
    mode    => '0644',
  }

Adam Lewenberg's avatar
Adam Lewenberg committed
}