Revision 2146, 284 bytes
(checked in by jerome, 20 years ago)
|
It seems that $Log$ is not implemented or doesn't work for some reason
|
-
Property svn:eol-style set to
native
-
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 |
---|