source: branches/1.1/debian/jobmonarch-webfrontend.prerm @ 930

Last change on this file since 930 was 896, checked in by ramonb, 11 years ago

debian/control:

  • depend on Ganglia 3.3.8

debian/*.postinst:

  • (de)configure is actually called on upgrade
  • changed upgrade logic to check if $2 is empty

debian/jobmonarch-webfrontend.prerm:

  • only print warning upon removal

debian/jobmonarch-jobmond.prerm, debian/jobmonarch-jobarchived.prerm:

  • only disable runlevel symlinks on removal
  • Property svn:executable set to *
File size: 241 bytes
Line 
1#!/bin/sh
2
3PATH=/bin:/sbin:/usr/bin:/usr/sbin
4
5set -e
6
7case "$1" in
8    remove)
9        # Only on removal (not during upgrade)
10        echo "Dont forget to set your Ganglia template back to default"
11        ;;
12    *)
13        ;;
14esac
15
16exit 0
Note: See TracBrowser for help on using the repository browser.