summaryrefslogtreecommitdiffstats
path: root/network/shibboleth-sp/README.SLACKWARE
diff options
context:
space:
mode:
author Thibaut Notteboom2013-03-03 19:45:36 +0100
committer Robby Workman2013-03-03 19:45:36 +0100
commite82df38da0f608d618b623fe024ab3fa8950bb17 (patch)
tree08a3cc3130a2ce436ab422a176a758c12defa61c /network/shibboleth-sp/README.SLACKWARE
parentba84a34c191db5a047da568d5c670f18ea37861b (diff)
downloadslackbuilds-e82df38da0f608d618b623fe024ab3fa8950bb17.tar.gz
network/shibboleth-sp: Added (Shibboleth Service Provider)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/shibboleth-sp/README.SLACKWARE')
-rw-r--r--network/shibboleth-sp/README.SLACKWARE24
1 files changed, 24 insertions, 0 deletions
diff --git a/network/shibboleth-sp/README.SLACKWARE b/network/shibboleth-sp/README.SLACKWARE
new file mode 100644
index 0000000000..68f032d04b
--- /dev/null
+++ b/network/shibboleth-sp/README.SLACKWARE
@@ -0,0 +1,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