Current File : //lib/svc/manifest/system/scheduler.xml
<?xml version="1.0"?>
<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
<!--
 Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
 Use is subject to license terms.

	ident	"%Z%%M%	%I%	%E% SMI"

	NOTE:  This service manifest is not editable; its contents will
	be overwritten by package or patch operations, including
	operating system upgrade.  Make customizations in a different
	file.

	Service manifest for system/scheduler.
-->

<service_bundle type='manifest' name='SUNWckr:scheduler'>

<service
	name='system/scheduler'
	type='service'
	version='1'>

	<create_default_instance enabled='false' />

	<single_instance />

	<!--
		The scheduler service changes the default scheduling class from
		/etc/dispadmin.conf. It therefore must have / (root) and /usr
		mounted readable. svc:/system/filesystem/usr (which remounts /
		and /usr read-writable) is dependent on svc:/system/scheduler to
		ensure that subsequent services can use their own scheduling 
		class.
	-->

	<dependency
		name='root'
		type='service'
		grouping='require_all'
		restart_on='none'>
		<service_fmri value='svc:/system/filesystem/root' />
	</dependency>

	<dependent
		name='scheduler_usr'
		grouping='optional_all'
		restart_on='none'>
		<service_fmri value='svc:/system/filesystem/usr' />
	</dependent>

	<exec_method
		type='method'
		name='start'
		exec='/lib/svc/method/svc-scheduler'
		timeout_seconds='30' />

	<exec_method
		type='method'
		name='stop'
		exec=':true'
		timeout_seconds='30' />

	<property_group name='startd' type='framework'>
		<propval name='duration' type='astring' value='transient' />
	</property_group>

	<stability value='Unstable' />

	<template>
		<common_name>
			<loctext xml:lang='C'>
				default scheduling class configuration
			</loctext>
		</common_name>

		<documentation>
			<manpage
				title='dispadmin'
				section='1M'
				manpath='/usr/share/man' />
		</documentation>
	</template>
</service>

</service_bundle>