]> source.dussan.org Git - rspamd.git/commitdiff
Update Debianization from 0.6 branch
authorMikhail Gusarov <dottedmag@dottedmag.net>
Fri, 28 Mar 2014 14:01:33 +0000 (15:01 +0100)
committerMikhail Gusarov <dottedmag@dottedmag.net>
Fri, 28 Mar 2014 14:01:33 +0000 (15:01 +0100)
debian/changelog
debian/rspamd.default [deleted file]
debian/rspamd.init

index d2d65ea96b1999daa6647ce688c0cbcc071bf899..9bbd05120b5ec093371654e5842a48cee43ebff1 100644 (file)
@@ -1,5 +1,5 @@
-rspamd (0.6.8) UNRELEASED; urgency=low
+rspamd (0.6.9) unstable; urgency=low
 
   * Initial release (Closes: #683746)
 
- -- Mikhail Gusarov <dottedmag@debian.org>  Mon, 17 Feb 2014 23:24:39 +0100
+ -- Mikhail Gusarov <dottedmag@debian.org>  Sun, 23 Mar 2014 19:04:13 +0100
diff --git a/debian/rspamd.default b/debian/rspamd.default
deleted file mode 100644 (file)
index 2676fca..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-RSPAMD_USERNAME=_rspamd
-RSPAMD_GROUPNAME=_rspamd
index 629f43ebe8d407a08e0aaf21b6909ff4e8edc5e8..0c84118daeaa416f599d931539a2163722b4d56b 100755 (executable)
@@ -20,15 +20,10 @@ DAEMON_ARGS="-c /etc/rspamd/rspamd.conf"
 DESC="rapid spam filtering system"
 PIDFILE=/run/rspamd/$NAME.pid
 SCRIPTNAME=/etc/init.d/$NAME
-RSPAMD_USERNAME=_rspamd
-RSPAMD_GROUPNAME=_rspamd
 
 # Exit if the package is not installed
 [ -x "$DAEMON" ] || exit 0
 
-# Read configuration variable file if it is present
-[ -r /etc/default/$NAME ] && . /etc/default/$NAME
-
 # Load the VERBOSE setting and other rcS variables
 . /lib/init/vars.sh
 
@@ -45,11 +40,11 @@ do_start()
        #   0 if daemon has been started
        #   1 if daemon was already running
        #   2 if daemon could not be started
-       mkdir -m 755 $RSPAMD_USERNAME:$RSPAMD_GROUPNAME -p /run/rspamd
+       mkdir -m 755 _rspamd:_rspamd -p /run/rspamd
        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \
                || return 1
        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
-               $DAEMON_ARGS -u $RSPAMD_USERNAME -g $RSPAMD_GROUPNAME \
+               $DAEMON_ARGS -u _rspamd -g _rspamd \
                || return 2
 }