[hamradio-commits] [ax25-tools] 01/02: Fixed dpkg issues reported on bugtracker

Dave Hibberd hibby-guest at moszumanska.debian.org
Mon Dec 18 21:57:40 UTC 2017


This is an automated email from the git hooks/post-receive script.

hibby-guest pushed a commit to branch master
in repository ax25-tools.

commit 68798bf5dd72e610fba01d82a1498986a446c3a8
Author: hibby <d at vehibberd.com>
Date:   Fri Nov 24 18:59:24 2017 +0000

    Fixed dpkg issues reported on bugtracker
---
 debian/changelog |   8 ++++
 debian/init.d    | 116 -------------------------------------------------------
 2 files changed, 8 insertions(+), 116 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 1fd11c0..80ece4a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+ax25-tools (0.0.10-rc4-3) UNRELEASED; urgency=medium
+
+  * Removed init.d from debian/ folder to prevent dpkg running postinst/rm
+     scripts
+     - Closes: #882419
+
+ -- Dave Hibberd <d at vehibberd.com>  Fri, 24 Nov 2017 18:57:23 +0000
+
 ax25-tools (0.0.10-rc4-2) unstable; urgency=medium
 
   * Add patch 02-ptsname-prototype.patch to fix segfault at runtime
diff --git a/debian/init.d b/debian/init.d
deleted file mode 100644
index 2b6bc76..0000000
--- a/debian/init.d
+++ /dev/null
@@ -1,116 +0,0 @@
-#! /bin/sh
-#
-# skeleton	example file to build /etc/init.d/ scripts.
-#		This file should be used to construct scripts for /etc/init.d.
-#
-#		Written by Miquel van Smoorenburg <miquels at cistron.nl>.
-#		Modified for Debian GNU/Linux
-#		by Ian Murdock <imurdock at gnu.ai.mit.edu>.
-#
-# Version:	@(#)skeleton  1.8  03-Mar-1998  miquels at cistron.nl
-#
-# This file was automatically customized by dh-make on Fri,  4 Jun 1999 14:28:59 +1000
-
-PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
-
-
-set -e
-
-case "$1" in
-  start)
-	echo -n "Starting ax25-tools: "
-	start-stop-daemon --start --quiet --pidfile /var/run/mheardd.pid \
-		--exec /usr/sbin/mheardd
-	echo -n " mheardd"
-	start-stop-daemon --start --quiet --pidfile /var/run/ax25d.pid \
-		--exec /usr/sbin/ax25d
-	echo -n " ax25d"
-	if [ -f /proc/net/nr ]
-	then
-	  start-stop-daemon --start --quiet --pidfile /var/run/netromd \
-	  	--exec /usr/sbin/netromd
-	  echo "."
-	  if [ -f /var/ax25/nodesave.data ]
-	  then
-	    echo -n "Restoring saved netrom nodes"
-	    . /var/ax25/nodesave.data
-	    rm -f /var/ax25/nodesave.data
-	    echo "."
-	  fi
-	else
-	  echo "."
-	fi
-	;;
-  stop)
-	echo -n "Stopping ax25-tools: "
-	start-stop-daemon --stop --quiet --pidfile /var/run/mheardd.pid \
-		--exec /usr/sbin/mheardd
-	echo -n " mheardd"
-	start-stop-daemon --stop --quiet --pidfile /var/run/ax25d.pid \
-		--exec /usr/sbin/ax25d
-	echo -n " ax25d"
-	if [ -f /proc/net/nr ]
-	then
-	  start-stop-daemon --stop --quiet --pidfile /var/run/netromd \
-	  	--exec /usr/sbin/netromd
-	  echo " netromd."
-	  echo -n "Saving netrom nodes"
-	  /usr/sbin/nodesave /var/ax25/nodesave.data
-	  echo "."
-	else
-	  echo "."
-	fi
-	;;
-  #reload)
-	#
-	#	If the daemon can reload its config files on the fly
-	#	for example by sending it SIGHUP, do it here.
-	#
-	#	If the daemon responds to changes in its config file
-	#	directly anyway, make this a do-nothing entry.
-	#
-	# echo "Reloading $DESC configuration files."
-	# start-stop-daemon --stop --signal 1 --quiet --pidfile \
-	#	/var/run/$NAME.pid --exec $DAEMON
-  #;;
-  restart|force-reload)
-	#
-	#	If the "reload" option is implemented, move the "force-reload"
-	#	option to the "reload" entry above. If not, "force-reload" is
-	#	just the same as "restart".
-	#
-	echo -n "Restarting ax25-tools: "
-	start-stop-daemon --stop --quiet --pidfile /var/run/mheardd.pid \
-		--exec /usr/sbin/mheardd
-	start-stop-daemon --stop --quiet --pidfile /var/run/ax25d.pid \
-		--exec /usr/sbin/ax25d
-	if [ -f /proc/net/nr ]
-	then
-	  start-stop-daemon --stop --quiet --pidfile /var/run/netromd \
-	  	--exec /usr/sbin/netromd
-	fi
-	sleep 1
-	start-stop-daemon --start --quiet --pidfile /var/run/mheardd.pid \
-		--exec /usr/sbin/mheardd
-	echo -n " mheardd"
-	start-stop-daemon --start --quiet --pidfile /var/run/ax25d.pid \
-		--exec /usr/sbin/ax25d
-	echo -n " ax25d"
-	if [ -f /proc/net/nr ]
-	then
-	  start-stop-daemon --start --quiet --pidfile /var/run/netromd \
-	  	--exec /usr/sbin/netromd
-	  echo "netromd."
-	else
-	  echo "."
-	fi
-	;;
-  *)
-	N=/etc/init.d/ax25-tools
-	# echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
-	echo "Usage: $N {start|stop|restart|force-reload}" >&2
-	exit 1
-	;;
-esac
-
-exit 0

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-hamradio/ax25-tools.git



More information about the pkg-hamradio-commits mailing list