From 4e2bae795e5eaf9922f0b966ab5df64994c836a2 Mon Sep 17 00:00:00 2001 From: Amit Gud Date: Mon, 12 Jun 2006 19:08:27 -0400 Subject: Move NFS mount code from util-linux to nfs-utils - part 2 Adds the support functions needed for mount and umount. This functionality will someday be available in the form of shared mount library. Signed-off-by: Amit Gud Signed-off-by: Steve Dickson --- support/include/nfs_paths.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 support/include/nfs_paths.h (limited to 'support/include/nfs_paths.h') diff --git a/support/include/nfs_paths.h b/support/include/nfs_paths.h new file mode 100644 index 0000000..de4ac19 --- /dev/null +++ b/support/include/nfs_paths.h @@ -0,0 +1,11 @@ +#ifndef _NFS_PATHS_H +#define _NFS_PATHS_H + +#ifndef _PATH_MOUNTED +#define _PATH_MOUNTED "/etc/fstab" +#endif +#define MOUNTED_LOCK _PATH_MOUNTED "~" +#define MOUNTED_TEMP _PATH_MOUNTED ".tmp" + +#endif /* _NFS_PATHS_H */ + -- cgit