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 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. /lib/svc/share/routing_include.sh 30 31smf_configure_ip || exit $SMF_EXIT_OK 32 33daemon_args=`get_daemon_args $SMF_FMRI` 34options="sqp:Ptv" 35 36# 37# Handle upgrade - routing/daemon-args property must be mapped to properties 38# in routeadm property group. Note the SMF-incompatible -t option is not 39# supported, since it requires that in.ripngd run in the foreground. 40# 41if [ -n "$daemon_args" ]; then 42 set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \ 43 "$options" "q" quiet_mode true false 44 set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \ 45 "$options" "s" supply_routes true false 46 set_daemon_value_property "$SMF_FMRI" "$daemon_args" \ 47 "$options" "p" udp_port 521 48 set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \ 49 "$options" "P" poison_reverse false true 50 set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \ 51 "$options" "v" verbose true false 52 set_daemon_nonoption_properties "$SMF_FMRI" "$daemon_args" \ 53 "$options" "log_file" 54 clear_daemon_args $SMF_FMRI 55fi 56 57# 58# Assemble arguments to daemon from properties 59# 60args="`get_daemon_option_from_boolean_property $SMF_FMRI \ 61 quiet_mode -q true`" 62args="$args `get_daemon_option_from_boolean_property $SMF_FMRI \ 63 supply_routes -s true`" 64args="$args `get_daemon_option_from_property $SMF_FMRI udp_port p 521`" 65args="$args `get_daemon_option_from_boolean_property $SMF_FMRI \ 66 poison_reverse -P false`" 67args="$args `get_daemon_option_from_boolean_property $SMF_FMRI \ 68 verbose -v true`" 69args="$args `get_daemon_nonoption_property $SMF_FMRI log_file`" 70 71/usr/lib/inet/in.ripngd $args 72 73[ "$?" = 0 ] || exit $SMF_EXIT_ERR_FATAL 74 75exit "$SMF_EXIT_OK" 76