diff options
author | H. Peter Anvin <hpa@zytor.com> | 1998-03-27 04:59:29 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 1998-03-27 04:59:29 +0000 |
commit | 416c8a6915ad2e45c98fd8a72a0deeb8adb5d1c1 (patch) | |
tree | c42f72b7c6d36b99b02a117e800a10fc3309706c /include | |
parent | d1a392948f14d1faa62271472ef6fecf1e80972f (diff) | |
download | autofs3-416c8a6915ad2e45c98fd8a72a0deeb8adb5d1c1.tar.gz autofs3-416c8a6915ad2e45c98fd8a72a0deeb8adb5d1c1.tar.xz autofs3-416c8a6915ad2e45c98fd8a72a0deeb8adb5d1c1.zip |
Added mount_ext2 module.
Diffstat (limited to 'include')
-rw-r--r-- | include/automount.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/automount.h b/include/automount.h index 8054269..a590525 100644 --- a/include/automount.h +++ b/include/automount.h @@ -14,13 +14,17 @@ #ifndef _PATH_MOUNT #define _PATH_MOUNT "/bin/mount" #endif + #ifndef _PATH_UMOUNT #define _PATH_UMOUNT "/bin/umount" #endif -/* If smbmount is unavailable, remote the mount_smbfs module from - modules/Makefile */ +#ifndef _PATH_E2FSCK +#define _PATH_E2FSCK "/sbin/fsck.ext2" +#endif +/* If smbmount is unavailable, remove the mount_smbfs module from + modules/Makefile */ #ifndef _PATH_SMBMOUNT #define _PATH_SMBMOUNT "/usr/bin/smbmount" #endif |