Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 13 lines (9 sloc) 375 Bytes
#!/bin/sh
# Delete httpd PID and cache files
find /var/run/httpd/ -type f -exec rm '{}' ';'
# exec /usr/sbin/httpd -DFOREGROUND
# Set permissions of /etc/shibboleth/sp-key.pem and /var/log/shibboleth,
# important when volume mounted
chown shibd:shibd /etc/shibboleth/sp-key.pem
chown -R shibd:shibd /var/log/shibboleth
exec /usr/bin/supervisord -c /etc/supervisord.conf