net-loopback (a192e900) net-loopback (f4b3ec61)
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#

--- 6 unchanged lines hidden (view full) ---

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#
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#

--- 6 unchanged lines hidden (view full) ---

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.
23# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24# Use is subject to license terms.
25#
26#ident "%Z%%M% %I% %E% SMI"
27
28. /lib/svc/share/smf_include.sh
29
30#
24# Use is subject to license terms.
25#
26#ident "%Z%%M% %I% %E% SMI"
27
28. /lib/svc/share/smf_include.sh
29
30#
31# In a zone we need this service to be up, but all of the work
32# it tries to do is irrelevant (and will actually lead to the service
33# failing if we try to do it), so just bail out.
31# In a shared-IP zone we need this service to be up, but all of the work
32# it tries to do is irrelevant (and will actually lead to the service
33# failing if we try to do it), so just bail out.
34# In the global zone and exclusive-IP zones we proceed.
34#
35#
35smf_is_globalzone || exit $SMF_EXIT_OK
36smf_configure_ip || exit $SMF_EXIT_OK
36
37#
38# Cause ifconfig to not automatically start in.mpathd when IPMP groups are
39# configured. This is not strictly necessary but makes it so that in.mpathd
40# will always be started explicitly from /lib/svc/method/net-init (the
41# svc:/network/initial service), when we're sure that /usr is mounted.
42#
43SUNW_NO_MPATHD=; export SUNW_NO_MPATHD

--- 39 unchanged lines hidden ---
37
38#
39# Cause ifconfig to not automatically start in.mpathd when IPMP groups are
40# configured. This is not strictly necessary but makes it so that in.mpathd
41# will always be started explicitly from /lib/svc/method/net-init (the
42# svc:/network/initial service), when we're sure that /usr is mounted.
43#
44SUNW_NO_MPATHD=; export SUNW_NO_MPATHD

--- 39 unchanged lines hidden ---