1 #!/bin/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 #
23 # Copyright 2006 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 #
26 # ident "%Z%%M% %I% %E% SMI"
27 #
28 # Start mirror resync threads.
29
30 DEVFSADM=/usr/sbin/devfsadm
31 METADEVADM=/usr/sbin/metadevadm
32 METASYNC=/usr/sbin/metasync
33 METADEV=/dev/md/admin
34 METASET=/usr/sbin/metaset
35 TMPFILE=/var/run/metaset.$$
36
37 . /lib/svc/share/smf_include.sh
38
39 print_verbose()
40 {
41 echo "Unable to resolve unnamed devices for volume management."
42 echo "Please refer to the Solaris Volume Manager documentation,"
43 echo "Troubleshooting section, at http://docs.sun.com or from"
44 echo "your local copy."
45 }
46
|
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 #
23 # Copyright 2006 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 #
26 #
27 # Start mirror resync threads.
28
29 DEVFSADM=/usr/sbin/devfsadm
30 METADEVADM=/usr/sbin/metadevadm
31 METASYNC=/usr/sbin/metasync
32 METADEV=/dev/md/admin
33 METASET=/usr/sbin/metaset
34 TMPFILE=/var/run/metaset.$$
35
36 . /lib/svc/share/smf_include.sh
37
38 print_verbose()
39 {
40 echo "Unable to resolve unnamed devices for volume management."
41 echo "Please refer to the Solaris Volume Manager documentation,"
42 echo "Troubleshooting section, at http://docs.sun.com or from"
43 echo "your local copy."
44 }
45
|