Revision 1344, 284 bytes
(checked in by jalet, 21 years ago)
|
Peter Hawkins suggested modifications for better Debian integration
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
-
Property svn:keywords set to
Author Date Id Revision
|
Line | |
---|
1 | #! /bin/sh |
---|
2 | |
---|
3 | # check if print quota package is available |
---|
4 | test -x /usr/bin/warnpykota || exit 0 |
---|
5 | |
---|
6 | # check if warnpyquota run is configured |
---|
7 | test -f /etc/default/printquota || exit 0 |
---|
8 | . /etc/default/printquota |
---|
9 | |
---|
10 | if [ "$run_warnpykota" = "true" ]; then |
---|
11 | /usr/bin/warnpykota |
---|
12 | fi |
---|
13 | |
---|
14 | exit 0 |
---|