components/ipmitool/ipmievd.xml
changeset 268 6518166b581c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/ipmitool/ipmievd.xml	Wed May 25 22:38:48 2011 -0700
@@ -0,0 +1,106 @@
+<?xml version="1.0"?>
+<!--
+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
+or http://www.opensolaris.org/os/licensing.
+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
+-->
+
+<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
+<!--
+    Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
+-->
+
+<service_bundle type='manifest' name='SUNWipmi:ipmievd'>
+
+<service name='network/ipmievd' type='service' version='1'>
+
+	<!--
+	  Configure a default instance for the service since it doesn't
+	  require additional configuration intervention before it starts.
+	-->
+	<create_default_instance enabled='false' />
+
+	<!--
+	  Wait for all usr filesystem to be mounted. ipmievd is
+	  located in /usr/lib.
+	-->
+	<dependency
+	    name='filesystem-usr'
+	    grouping='require_all'
+	    restart_on='none'
+	    type='service'>
+	    <service_fmri
+		value='svc:/system/filesystem/usr:default'/>
+	</dependency>
+
+	<!--
+	  Wait for syslog to be started in order to write system
+	  messages from the kernel.
+	-->
+	<dependency
+	    name='syslog'
+	    grouping='require_all'
+	    restart_on='none'
+	    type='service'>
+	    <service_fmri
+		value='svc:/system/system-log:default'/>
+	</dependency>
+
+	<!--
+	  The ipmievd start/stop methods.
+	-->
+
+	<exec_method
+		type='method'
+		name='start'
+		exec='/lib/svc/method/svc-ipmievd %m'
+		timeout_seconds='60'/>
+
+	<exec_method
+		type='method'
+		name='stop'
+		exec=':kill'
+		timeout_seconds='60' />
+
+	<property_group name='startd' type='framework'>
+		<!--
+		  Sub-process core dumps and external kill signals are not
+		  considered errors, so the service should be restarted.
+	        -->
+		<propval name='ignore_error' type='astring'
+			 value='core,signal' />
+	</property_group>
+
+	<stability value='Unstable' />
+
+	<template>
+		<common_name>
+			<loctext xml:lang='C'>
+				IPMI event daemon
+			</loctext>
+		</common_name>
+		<documentation>
+			<manpage title='ipmievd' section='8'
+				manpath='/usr/share/man' />
+			<doc_link name='sourceforge.net'
+				uri='http://sourceforge.net/projects/ipmitool' />
+		</documentation>
+	</template>
+</service>
+
+</service_bundle>