#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
#
#
# Install DNS client service
#
DNS_NWAM_FMRI="svc:/network/physical:nwam"
DNS_INSTALL_PG="install_props"
DNS_UNDEFINED_STRING_PROP="\"\""
{
config=0
#
# Retrieve the name server property values.
#
config=1
fi
#
# Retrieve the name service domain.
#
config=1
fi
#
# Retrieve the search list.
#
config=1
fi
[ $config -ne 0 ] || return $SMF_EXIT_OK
#
# Create the resolv.conf file.
#
/usr/bin/touch /etc/resolv.conf.$$
if [ $? -ne 0 ]; then
return $SMF_EXIT_ERR_FATAL
fi
for j in $dns_install_servers
do
done
fi
list="search"
for j in $dns_install_search
do
done
echo $list >>/etc/resolv.conf.$$
fi
/usr/bin/mv /etc/resolv.conf.$$ /etc/resolv.conf
if [ $? -ne 0 ]; then
err=$?
msg="Error moving /etc/resolv.conf.$$ to \"/etc/resolv.conf\""
return $SMF_EXIT_ERR_FATAL
fi
/usr/bin/chmod 644 /etc/resolv.conf
if [ $? -ne 0 ]; then
err=$?
msg="Error setting permissions on \"/etc/resolv.conf\""
return $SMF_EXIT_ERR_FATAL
fi
#
# Create the nsswitch.conf file
#
/usr/bin/cp -f /etc/nsswitch.dns /etc/nsswitch.conf
if [ $? -ne 0 ]; then
err=$?
msg="Error copying /etc/nsswitch.dns to \"/etc/nsswitch.conf\""
return $SMF_EXIT_ERR_FATAL
fi
/usr/bin/chmod 644 /etc/nsswitch.conf
if [ $? -ne 0 ]; then
err=$?
msg="Error setting permissions on \"/etc/nsswitch.conf\""
return $SMF_EXIT_ERR_FATAL
fi
return $SMF_EXIT_OK
}
{
vout=`$SVCCFG -s $DNS_INSTALL_FMRI validate 2>&1`
msg="Validation errors in $DNS_INSTALL_FMRI:\n$vout"
return $SMF_EXIT_ERR_CONFIG
fi
errs=0
cnt=0
if [ $? -eq 0 ]; then
if service_is_enabled $DNS_NWAM_FMRI; then
echo "NWAM enabled. Install static" \
else
if [ $? -ne $SMF_EXIT_OK ]; then
ecode=$?
else
fi
fi
fi
if [ $dns_install_debug -eq 1 ]; then
"configuring DNS on behalf of install"
fi
echo "DNS configured on behalf of install"
fi
fi
return $ecode
}
#
# Script execution starts here.
#
dns_process_install || exit $?
exit $SMF_EXIT_OK