11772Sjl139090#!/bin/sh 21772Sjl139090# 31772Sjl139090# CDDL HEADER START 41772Sjl139090# 51772Sjl139090# The contents of this file are subject to the terms of the 61772Sjl139090# Common Development and Distribution License (the "License"). 71772Sjl139090# You may not use this file except in compliance with the License. 81772Sjl139090# 91772Sjl139090# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 101772Sjl139090# or http://www.opensolaris.org/os/licensing. 111772Sjl139090# See the License for the specific language governing permissions 121772Sjl139090# and limitations under the License. 131772Sjl139090# 141772Sjl139090# When distributing Covered Code, include this CDDL HEADER in each 151772Sjl139090# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 161772Sjl139090# If applicable, add the following below this CDDL HEADER, with the 171772Sjl139090# fields enclosed by brackets "[]" replaced with your own identifying 181772Sjl139090# information: Portions Copyright [yyyy] [name of copyright owner] 191772Sjl139090# 201772Sjl139090# CDDL HEADER END 211772Sjl139090# 221772Sjl139090# 231772Sjl139090# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 241772Sjl139090# Use is subject to license terms. 251772Sjl139090# 261772Sjl139090# ident "%Z%%M% %I% %E% SMI" 271772Sjl139090# 281772Sjl139090 291772Sjl139090# 301772Sjl139090# Startup script for the Key Management Daemon 311772Sjl139090# 321772Sjl139090 331772Sjl139090. /lib/svc/share/smf_include.sh 341772Sjl139090 351772Sjl139090platform=${_INIT_UTS_PLATFORM:-`/sbin/uname -i`} 361772Sjl139090starcat="SUNW,Sun-Fire-15000" 371772Sjl139090opl="SUNW,SPARC-Enterprise" 381772Sjl139090sckmd="/usr/platform/sun4u/lib/sckmd" 391772Sjl139090 401772Sjl139090if [ ${platform} = "${starcat}" -o \ 41*2117Smcwalter ${platform} = "${opl}" ]; then 421772Sjl139090 if [ -x ${sckmd} ]; then 431772Sjl139090 ${sckmd} 441772Sjl139090 exit $SMF_EXIT_OK 451772Sjl139090 fi 461772Sjl139090fi 471772Sjl139090exit $SMF_EXIT_MON_OFFLINE 48