move start and stop positions
This commit is contained in:
parent
dd87cc4560
commit
817c835598
10
debian/NEWS
vendored
Normal file
10
debian/NEWS
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
ps-watcher (1.08-1) unstable; urgency=low
|
||||
|
||||
* moved startup to the end of the boot process and terminating to the
|
||||
beginning of the shutdown process
|
||||
|
||||
If you modified the order of ps-watcher runlevel scripts for your own, this
|
||||
adjustment will not happen automatically and you have to handle it for
|
||||
yourself.
|
||||
|
||||
-- Jan Wagner <waja@cyconet.org> Fri, 24 Jul 2009 19:16:09 +0200
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,11 +1,13 @@
|
|||
ps-watcher (1.08-1) UNRELEASED; urgency=low
|
||||
ps-watcher (1.08-1) unstable; urgency=low
|
||||
|
||||
* new upstream release
|
||||
- pidfile support
|
||||
- darwin support
|
||||
* remove dpatch infrastructure
|
||||
* moved initscritps to S99 and K01, thanks Tim Miller Dyck (Closes: #508189)
|
||||
* created NEWS.Debian
|
||||
|
||||
-- Jan Wagner <waja@cyconet.org> Thu, 19 Feb 2009 17:31:31 +0100
|
||||
-- Jan Wagner <waja@cyconet.org> Fri, 24 Jul 2009 19:12:00 +0200
|
||||
|
||||
ps-watcher (1.07-1) unstable; urgency=low
|
||||
|
||||
|
|
21
debian/postinst
vendored
Normal file
21
debian/postinst
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
if [ "$1" != "configure" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "$2" ] && dpkg --compare-versions "$2" lt "1.08-1"; then
|
||||
if [ -e /etc/rc2.d/S40ps-watcher ] && \
|
||||
[ -e /etc/rc3.d/S40ps-watcher ] && \
|
||||
[ -e /etc/rc4.d/S40ps-watcher ] && \
|
||||
[ -e /etc/rc5.d/S40ps-watcher ] && \
|
||||
[ -e /etc/rc0.d/K40ps-watcher ] && \
|
||||
[ -e /etc/rc1.d/K40ps-watcher ] && \
|
||||
[ -e /etc/rc6.d/K40ps-watcher ]; then
|
||||
update-rc.d -f ps-watcher remove >/dev/null
|
||||
fi
|
||||
fi
|
||||
|
||||
#DEBHELPER#
|
2
debian/rules
vendored
2
debian/rules
vendored
|
@ -50,7 +50,7 @@ binary-indep: build install
|
|||
dh_installchangelogs ChangeLog
|
||||
dh_installdocs
|
||||
dh_installexamples samples/*
|
||||
dh_installinit -- defaults 40
|
||||
dh_installinit -- defaults 99 01
|
||||
dh_link
|
||||
dh_compress
|
||||
dh_fixperms
|
||||
|
|
Loading…
Reference in a new issue