[Pkg-irc-commits] r261 - in /packages/atheme-services/trunk/debian: changelog control init.d

asciitxt-guest at users.alioth.debian.org asciitxt-guest at users.alioth.debian.org
Wed May 26 21:51:04 UTC 2010


Author: asciitxt-guest
Date: Wed May 26 21:51:03 2010
New Revision: 261

URL: http://svn.debian.org/wsvn/pkg-irc/?sc=1&rev=261
Log:
I'm back.. Its been one hell of a year atheme-services 5.0.1  + lintian fixes

Modified:
    packages/atheme-services/trunk/debian/changelog
    packages/atheme-services/trunk/debian/control
    packages/atheme-services/trunk/debian/init.d

Modified: packages/atheme-services/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-irc/packages/atheme-services/trunk/debian/changelog?rev=261&op=diff
==============================================================================
--- packages/atheme-services/trunk/debian/changelog (original)
+++ packages/atheme-services/trunk/debian/changelog Wed May 26 21:51:03 2010
@@ -1,10 +1,12 @@
-atheme-services (3.1.0-1) unstable; urgency=low
+atheme-services (5.0.0-1) unstable; urgency=low
 
   *  New upstream release
   *  Watch file fixed thanks Tim Recout <tim at retout.co.uk> (Closes: #486583
-  *  Add gettext as a build-depends (3.1 needs for help files) 
+  *  Add gettext as a build-depends (> 3.0 needs for help files) 
+  *  Fix init script 
+  *  New standards version 3.8.4 
 
- -- Matt Arnold <mattarnold5 at gmail.com>  Tue, 12 Aug 2008 01:05:01 -0400
+ -- Matt Arnold <mattarnold5 at gmail.com>  Wed, 26 May 2010 17:47:27 -0400
 
 atheme-services (3.0.4-1) unstable; urgency=low
 

Modified: packages/atheme-services/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-irc/packages/atheme-services/trunk/debian/control?rev=261&op=diff
==============================================================================
--- packages/atheme-services/trunk/debian/control (original)
+++ packages/atheme-services/trunk/debian/control Wed May 26 21:51:03 2010
@@ -6,7 +6,7 @@
 Maintainer: Debian IRC Team <pkg-irc-maintainers at lists.alioth.debian.org>
 Uploaders: William Pitcock <nenolod at sacredspiral.co.uk>, Mario Iseli <mario at debian.org>, Darren Blaber <dmbtech at gmail.com>, Matt Arnold <mattarnold5 at gmail.com>
 Build-Depends: debhelper (>= 5), autotools-dev, libssl-dev, gettext, libmowgli-dev (>= 0.4), pkg-config,
-Standards-Version: 3.8.0
+Standards-Version: 3.8.4
 Homepage: http://www.atheme.net
 Vcs-Svn: svn://svn.debian.org/pkg-irc/packages/atheme-services/trunk/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-irc/packages/atheme-services/trunk/

Modified: packages/atheme-services/trunk/debian/init.d
URL: http://svn.debian.org/wsvn/pkg-irc/packages/atheme-services/trunk/debian/init.d?rev=261&op=diff
==============================================================================
--- packages/atheme-services/trunk/debian/init.d (original)
+++ packages/atheme-services/trunk/debian/init.d Wed May 26 21:51:03 2010
@@ -2,8 +2,8 @@
 
 ### BEGIN INIT INFO
 # Provides:          atheme-services
-# Required-Start:    $syslog
-# Required-Stop:     $syslog
+# Required-Start:    $syslog $remote_fs
+# Required-Stop:     $syslog $remote_fs
 # Default-Start:     2 3 4 5
 # Default-Stop:      0 1 6
 # Short-Description: Atheme-services daemon init.d script
@@ -16,17 +16,22 @@
 DESC="Atheme IRC Services"
 
 test -x $DAEMON || exit 0
-
+RUNDIR="/var/run/atheme"
 # Include atheme defaults if available
 if [ -f /etc/default/atheme-services ] ; then
 	. /etc/default/atheme-services
 fi
+
 
 if [ "$ENABLED" != "1" ] ; then
 	echo "Please set ENABLED to 1 in /etc/default/atheme-services"
 fi
 
 set -e
+
+if [! -d $RUNDIR]; then
+	mkdir $RUNDIR
+fi
 
 case "$1" in
   start)




More information about the Pkg-irc-commits mailing list