Current File : //lib/svc/manifest/system/utmp.xml
<?xml version="1.0"?>
<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
<!--
 Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.

	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_bundle type='manifest' name='SUNWcsr:utmpd'>

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

	<!--
		We need to mark this as enabled in the seed, due to
		svc.startd not waiting for manifest import before
		making decisions on whether to start sulogin (see
		6194195).
	-->
	<create_default_instance enabled='true' />

	<single_instance/>


	<!--
		Since utmpd(1M) deamon monitors files in /var/adm/ directory,
		make sure that /var/adm/ is available.
	-->
	<dependency
		name='utmpd_filesystem_miminal'
		grouping='require_all'
		restart_on='none'
		type='service'>
		<service_fmri value='svc:/system/filesystem/minimal:default' />
	</dependency>

	<dependent
		name='utmpd_multi-user'
		grouping='optional_all'
		restart_on='none'>
		<service_fmri value='svc:/milestone/multi-user' />
	</dependent>

        <method_context>
                <method_credential user='daemon' group='daemon'
                privileges='basic,sys_resource,{zone}:/system/volatile/utmpx,{zone}:/system/volatile/utmppipe,{zone}:/var/adm/wtmpx' />
        </method_context>

	<exec_method
		type='method'
		name='start'
		exec='/lib/svc/method/svc-utmpd'
		timeout_seconds='60' />

	<exec_method
		type='method'
		name='stop'
		exec=':kill'
		timeout_seconds='60' />

	<stability value='Unstable' />

	<template>
		<common_name>
			<loctext xml:lang='C'> utmpx monitoring
			</loctext>
		</common_name>
		<documentation>
			<manpage title='utmpd' section='1M'
				manpath='/usr/share/man' />
			<manpage title='utmpx' section='4'
				manpath='/usr/share/man' />
		</documentation>
	</template>
</service>

</service_bundle>