Changeset 869
- Timestamp:
- 05/16/13 16:45:33 (10 years ago)
- Location:
- branches/1.0/debian
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/debian/jobmonarch-jobarchived.prerm
r846 r869 3 3 PATH=/bin:/sbin:/usr/bin:/usr/sbin 4 4 5 /etc/init.d/jobarchived stop || true 6 update-rc.d -f jobarchived remove || true 5 set -e 6 7 case "$1" in 8 remove|deconfigure) 9 # Only on removal (not during upgrade) 10 /etc/init.d/jobarchived stop || true 11 update-rc.d -f jobarchived remove || true 12 ;; 13 *) 14 ;; 15 esac 7 16 8 17 exit 0 -
branches/1.0/debian/jobmonarch-jobmond.prerm
r846 r869 3 3 PATH=/bin:/sbin:/usr/bin:/usr/sbin 4 4 5 /etc/init.d/jobmond stop || true 6 update-rc.d -f jobmond remove || true 5 set -e 6 7 case "$1" in 8 remove|deconfigure) 9 # Only on removal (not during upgrade) 10 /etc/init.d/jobmond stop || true 11 update-rc.d -f jobmond remove || true 12 ;; 13 *) 14 ;; 15 esac 16 17 exit 0
Note: See TracChangeset
for help on using the changeset viewer.