mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
3f626b06c6
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
24 lines
545 B
Text
24 lines
545 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.shibd ]; then
|
|
/etc/rc.d/rc.shibd 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.shibd ]; then
|
|
/etc/rc.d/rc.shibd stop
|
|
fi
|