slackbuilds_ponce/network/shibboleth-sp/README.SLACKWARE
Thibaut Notteboom e82df38da0 network/shibboleth-sp: Added (Shibboleth Service Provider)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2013-03-03 12:45:36 -06:00

24 lines
565 B
Text

README.SLACKWARE
================
1) Apache configuration
You will need to add the following line to /etc/httpd/httpd.conf:
Include /etc/httpd/extra/mod_shib.conf
2) Start & Stop scripts
To start shibboleth automatically at system startup, add the following to
your /etc/rc.d/rc.local:
if [ -x /etc/rc.d/rc.shibboleth ]; then
/etc/rc.d/rc.shibboleth start
fi
To stop shibboleth automatically at system shutdown, add the following to
your /etc/rc.d/rc.local_shutdown:
if [ -x /etc/rc.d/rc.shibboleth ]; then
/etc/rc.d/rc.shibboleth stop
fi