diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-03-18 07:47:37 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-03-18 07:47:37 (GMT) |
commit | cc7522b25bfc0157eb51777f8345812e79760179 (patch) | |
tree | 94e4eb2d572c352315c39d48e25925f9605fa19a /lib/afs.m4 | |
parent | b4bb59cd9bd16e3f3c1df907b8802e7e476d2ec8 (diff) | |
download | monitoring-plugins-cc7522b25bfc0157eb51777f8345812e79760179.tar.gz |
from GNU fileutils for check_disk
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@429 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'lib/afs.m4')
-rw-r--r-- | lib/afs.m4 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/afs.m4 b/lib/afs.m4 new file mode 100644 index 0000000..13f3bc9 --- /dev/null +++ b/lib/afs.m4 | |||
@@ -0,0 +1,12 @@ | |||
1 | #serial 3 | ||
2 | |||
3 | AC_DEFUN(jm_AFS, | ||
4 | AC_MSG_CHECKING(for AFS) | ||
5 | if test -d /afs; then | ||
6 | AC_DEFINE(AFS, 1, [Define if you have the Andrew File System.]) | ||
7 | ac_result=yes | ||
8 | else | ||
9 | ac_result=no | ||
10 | fi | ||
11 | AC_MSG_RESULT($ac_result) | ||
12 | ) | ||