xref: /illumos-gate/usr/src/cmd/initpkg/dfstab.sh (revision 8e458de0baeb1fee50643403223bc7e909a48464)
1#!/sbin/sh
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
6# Common Development and Distribution License (the "License").
7# You may not use this file except in compliance with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T
23#	  All Rights Reserved
24#
25# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
26# Use is subject to license terms.
27#
28#ident	"%Z%%M%	%I%	%E% SMI"	/* SVr4.0 1.1.2.1	*/
29case "$MACH" in
30  "u3b2"|"sparc"|"i386"|"ppc" )
31	echo "
32# Do not modify this file directly.
33# Use the sharemgr(1m) command for all share management
34# This file is reconstructed and only maintained for backward
35# compatibility. Configuration lines could be lost.
36#
37#	share [-F fstype] [ -o options] [-d \"<text>\"] <pathname> [resource]
38#	.e.g,
39#	share  -F nfs  -o rw=engineering  -d \"home dirs\"  /export/home2
40" >dfstab
41	;;
42  * )
43	echo "Unknown architecture."
44	exit 1
45	;;
46esac
47