blob: 68f032d04b66c0bd7e7cae987fdf34d830a78c56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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
|