]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/amd/scripts/automount2amd.8
MFC r308493, r308619: Update amd from am-utils 6.1.5 to 6.2.
[FreeBSD/stable/10.git] / contrib / amd / scripts / automount2amd.8
1 .\"
2 .\" Copyright (c) 1997-2014 Erez Zadok
3 .\" Copyright (c) 1990 Jan-Simon Pendry
4 .\" Copyright (c) 1990 Imperial College of Science, Technology & Medicine
5 .\" Copyright (c) 1990 The Regents of the University of California.
6 .\" All rights reserved.
7 .\"
8 .\" This code is derived from software contributed to Berkeley by
9 .\" Jan-Simon Pendry at Imperial College, London.
10 .\"
11 .\" Redistribution and use in source and binary forms, with or without
12 .\" modification, are permitted provided that the following conditions
13 .\" are met:
14 .\" 1. Redistributions of source code must retain the above copyright
15 .\"    notice, this list of conditions and the following disclaimer.
16 .\" 2. Redistributions in binary form must reproduce the above copyright
17 .\"    notice, this list of conditions and the following disclaimer in the
18 .\"    documentation and/or other materials provided with the distribution.
19 .\" 3. Neither the name of the University nor the names of its contributors
20 .\"    may be used to endorse or promote products derived from this software
21 .\"    without specific prior written permission.
22 .\"
23 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .\" SUCH DAMAGE.
34 .\"
35 .\"
36 .\" File: am-utils/scripts/automount2amd.8
37 .\"
38 .TH AUTOMOUNT2AMD 8L "24 May 1993"
39 .SH NAME
40 automount2amd \- converts old Sun automount maps to Amd maps
41 .SH SYNOPSIS
42 .B automount2amd
43 .I auto.map
44 .SH DESCRIPTION
45 .LP
46 .B automount2amd
47 is used to convert an old Sun automount maps named
48 .I auto.map
49 to an Amd map.
50
51 This perl script will use the following /default entry
52 .nf
53     type:=nfs;opts:=rw,grpid,nosuid,utimeout=600
54 .fi
55 If you wish to override that, define the
56 .B $DEFAULTS
57 environment variable, or modify the script.
58
59 If you wish to generate Amd maps using the
60 .I hostd
61 (host domain) Amd map syntax, then define the environment variable
62 .B $DOMAIN
63 or modify the script.
64
65 .SH EXAMPLE
66 Say you have the Sun automount file auto.foo, with these two lines:
67 .nf
68   home                  earth:/home
69   moon  -ro,intr        server:/proj/images
70 .fi
71 Running
72 .nf
73     automount2amd auto.foo > amd.foo
74 .fi
75 will produce the Amd map
76 .I amd.foo
77 with this content:
78 .nf
79 # generated by automount2amd on Sat Aug 14 17:59:32 US/Eastern 1999
80
81 /defaults \\
82   type:=nfs;opts:=rw,grpid,nosuid,utimeout=600
83
84 home \
85   host==earth;type:=link;fs:=/home \\
86   rhost:=earth;rfs:=/home
87
88 moon \
89   -addopts:=ro,intr \\
90   host==server;type:=link;fs:=/proj/images \\
91   rhost:=server;rfs:=/proj/images
92 .fi
93 .SH BUGS
94 .I automount2amd
95 does not understand newer Sun Automount map syntax, those used by autofs.
96 .SH "SEE ALSO"
97 .BR conv2amd (8), amd (8).
98 .LP
99 ``am-utils''
100 .BR info (1)
101 entry.
102 .LP
103 .I "Linux NFS and Automounter Administration"
104 by Erez Zadok, ISBN 0-7821-2739-8, (Sybex, 2001).
105 .LP
106 .I http://www.am-utils.org
107 .LP
108 .I "Amd \- The 4.4 BSD Automounter"
109 .SH AUTHORS
110 Original author Mike Walker <mike@tab00.larc.nasa.gov>.
111 Script modified by Erez Zadok <ezk@cs.sunysb.edu>, Computer Science
112 Department, Stony Brook University, Stony Brook, New York, USA.
113 .P
114 Other authors and contributors to am-utils are listed in the
115 .B AUTHORS
116 file distributed with am-utils.