Codebase list ps-watcher / debian/1.06-6
fix debhelper scripts and revert other changes to -5 Jan Wagner 17 years ago
4 changed file(s) with 10 addition(s) and 7 deletion(s). Raw diff Collapse all Expand all
0 ps-watcher (1.06-6) unstable; urgency=medium
1
2 * fix prerm and postinst to prevent trouble when updating
3
4 -- Jan Wagner <waja@cyconet.org> Thu, 8 Mar 2007 09:20:58 +0100
5
06 ps-watcher (1.06-5) unstable; urgency=medium
17
28 * fix typo in init script which prevents from start
2525 On Debian systems, the complete text of the GNU General Public License
2626 can be found in /usr/share/common-licenses/GPL file.
2727
28 The Debian packaging is (C) 2006, 2007 Jan Wagner <waja@cyconet.org> and
28 The Debian packaging is (C) 2006, Jan Wagner <waja@cyconet.org> and
2929 is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
55 fi
66
77 if [ -x "/etc/init.d/ps-watcher" ]; then
8 if [ "$startup" = "1" ] && [ -f $CONFIG ]; then
8 update-rc.d ps-watcher defaults 40 >/dev/null
9 if [ "$startup" = "1" ] && [ -f "/etc/default/pswatcher" ]; then
910 if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
1011 invoke-rc.d ps-watcher start || exit $?
1112 else
1314 fi
1415 fi
1516 fi
16
17 #DEBHELPER#
44 . /etc/default/ps-watcher
55 fi
66
7 if [ -x "/etc/init.d/ps-watcher" ] && [ "$startup" = "1" ] && [ -f $CONFIG ]; then
7 if [ -x "/etc/init.d/ps-watcher" ] && [ "$startup" = "1" ] && [ -f "/etc/default/pswatcher" ]; then
88 if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
99 invoke-rc.d ps-watcher stop || exit $?
1010 else
1111 /etc/init.d/ps-watcher stop || exit $?
1212 fi
1313 fi
14
15 #DEBHELPER#