Update standards version to 3.8.3
authorRuss Allbery <rra@debian.org>
Fri, 21 Aug 2009 18:40:16 +0000 (11:40 -0700)
committerRuss Allbery <rra@debian.org>
Fri, 21 Aug 2009 18:40:16 +0000 (11:40 -0700)
* Update standards version to 3.8.3.
  - Create /var/run/shibboleth in the init script if it doesn't exist.

configs/shibd-debian.in
debian/changelog
debian/control

index 61fbb7a..889372d 100644 (file)
@@ -50,6 +50,9 @@ DAEMON_OPTS="$DAEMON_OPTS -p $PIDFILE"
 
 case "$1" in
 start)
+    # Ensure @-PKGRUNDIR-@ exists.  /var/run may be on a tmpfs file system.
+    [ -d '@-PKGRUNDIR-@' ] || mkdir -p '@-PKGRUNDIR-@'
+
     # Don't start shibd if NO_START is set.
     if [ "$NO_START" = 1 ] ; then
         echo "Not starting $DESC (see /etc/default/$NAME)"
@@ -67,6 +70,9 @@ stop)
     echo "$NAME."
     ;;
 restart|force-reload)
+    # Ensure @-PKGRUNDIR-@ exists.  /var/run may be on a tmpfs file system.
+    [ -d '@-PKGRUNDIR-@' ] || mkdir -p '@-PKGRUNDIR-@'
+
     echo -n "Restarting $DESC: "
     start-stop-daemon --stop --quiet --pidfile $PIDFILE \
         --exec $DAEMON
index c0ca267..41c70c3 100644 (file)
@@ -31,6 +31,8 @@ shibboleth-sp2 (2.2.1+dfsg-1) UNRELEASED; urgency=low
     get-orig-source from debian/changelog.
   * Update libapache2-mod-shib2's README.Debian for changes to the
     TestShib web pages.
+  * Update standards version to 3.8.3.
+    - Create /var/run/shibboleth in the init script if it doesn't exist.
 
  -- Russ Allbery <rra@debian.org>  Fri, 24 Jul 2009 15:29:01 -0700
 
index e1921e7..e556a45 100644 (file)
@@ -8,7 +8,7 @@ Build-Depends: debhelper (>= 5), autotools-dev, autoconf, automake,
  libsaml2-dev (>= 2.2), libssl-dev, libxerces-c-dev,
  libxml-security-c-dev (>= 1.4), libxmltooling-dev (>= 1.2),
  opensaml2-schemas, unixodbc-dev, xmltooling-schemas
-Standards-Version: 3.8.0
+Standards-Version: 3.8.3
 Homepage: http://shibboleth.internet2.edu/
 Vcs-Git: git://git.debian.org/git/pkg-shibboleth/shibboleth-sp2.git
 Vcs-Browser: http://git.debian.org/?p=pkg-shibboleth/shibboleth-sp2.git