root / pykota / trunk / debian / pykota.cron.daily @ 2139

Revision 2139, 284 bytes (checked in by jerome, 19 years ago)

Added the Log keyword property

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision Log
Line 
1#! /bin/sh
2
3# check if print quota package is available
4test -x /usr/bin/warnpykota || exit 0
5
6# check if warnpyquota run is configured
7test -f /etc/default/printquota || exit 0
8. /etc/default/printquota
9
10if [ "$run_warnpykota" = "true" ]; then
11        /usr/bin/warnpykota
12fi
13
14exit 0
Note: See TracBrowser for help on using the browser.