~ubuntu-branches/ubuntu/maverick/sysstat/maverick

« back to all changes in this revision

Viewing changes to debian/sysstat.init.d

  • Committer: Bazaar Package Importer
  • Author(s): Robert Luberda
  • Date: 2009-06-07 21:37:20 UTC
  • mfrom: (1.1.15 upstream) (2.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090607213720-4sixxpv1y32q27qn
Tags: 9.0.3-2
Remove some debugging cruft left by accident.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
        ;;
46
46
  stop)
47
47
        ;;
48
 
 
 
48
  status)
 
49
        if [ "$ENABLED" = "true" ] ; then
 
50
                log_success_msg "sadc cron jobs are enabled"
 
51
                exit 0
 
52
        else
 
53
                log_failure_msg "sadc cron jobs are disabled"
 
54
                exit 3
 
55
        fi
 
56
        ;;
49
57
  *)
50
 
        log_failure_msg "Usage: $0 {start|stop|restart|reload|force-reload}"
 
58
        log_failure_msg "Usage: $0 {start|stop|restart|reload|force-reload|status}"
51
59
        exit 1
52
60
        ;;
53
61
esac