diff options
Diffstat (limited to 'network/shibboleth-sp/shibboleth-sp.SlackBuild')
-rw-r--r-- | network/shibboleth-sp/shibboleth-sp.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/network/shibboleth-sp/shibboleth-sp.SlackBuild b/network/shibboleth-sp/shibboleth-sp.SlackBuild index 41b8197e79..bcb942a844 100644 --- a/network/shibboleth-sp/shibboleth-sp.SlackBuild +++ b/network/shibboleth-sp/shibboleth-sp.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=shibboleth-sp VERSION=${VERSION:-2.5.5} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -58,8 +58,8 @@ set -e if [ "$(grep ^shibd /etc/passwd)" = "" -o "$(grep ^shibd /etc/group)" = "" ] ; then printf "\nYou must have a shibd user and group.\n\nExample:\n" - printf "\t# groupadd -g 267 shibd\n" - printf "\t# useradd -d /var/run/shibboleth -s /bin/false -u 267 -g shibd shibd\n\n" + printf "\t# groupadd -g 312 shibd\n" + printf "\t# useradd -d /var/run/shibboleth -s /bin/false -u 312 -g shibd shibd\n\n" exit 1 fi @@ -97,7 +97,7 @@ mkdir -p $PKG/etc/rc.d cat $CWD/rc.shibd > $PKG/etc/rc.d/rc.shibd.new # Remove useless stuffs -rm -f $PKG/etc/shibboleth/shibd-* $PKG/etc/shibboleth/*.dist +rm -f $PKG/etc/shibboleth/shibd-* $PKG/etc/shibboleth/*.dist $PKG/etc/shibboleth/apache*.config # Change configuration files to .new find $PKG/etc/shibboleth/ -name *.html | while read cfg ; do mv $cfg $cfg.new ; done |