1<?xml version='1.0'?> 2<!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'> 3<!-- 4 Copyright 2008 Sun Microsystems, Inc. All rights reserved. 5 Use is subject to license terms. 6 7 NOTE: This service manifest is not editable; its contents will 8 be overwritten by package or patch operations, including 9 operating system upgrade. Make customizations in a different 10 file. 11 12 Service manifest for the krb5_prop service. 13 14 kpropd can run in two modes, incremental and nonincremental: 15 the new mode of incremental propagation 16 actively polls for updates from the master KDC 17 18 the old mode of nonincremental 19 passively receives full propagations from the master KDC 20 21 refer to kdc.conf(5) to configure incremental or nonincremental modes 22--> 23 24<service_bundle type='manifest' name='SUNWkdcr:kpropd'> 25 26<service 27 name='network/security/krb5_prop' 28 type='service' 29 version='1'> 30 31 <create_default_instance enabled='false' /> 32 33 <dependency 34 name='dns' 35 grouping='require_all' 36 restart_on='error' 37 type='service'> 38 <service_fmri value='svc:/network/dns/client' /> 39 </dependency> 40 41 <exec_method 42 type='method' 43 name='start' 44 exec='/usr/lib/krb5/kpropd -S' 45 timeout_seconds='60'> 46 <method_context> 47 <method_credential 48 user='root' 49 group='other' 50 privileges='basic,!file_link_any,!proc_info,!proc_session,net_privaddr' 51 /> 52 </method_context> 53 </exec_method> 54 55 <exec_method 56 type='method' 57 name='stop' 58 exec=':kill' 59 timeout_seconds='60' /> 60 61 <stability value='Unstable' /> 62 63 <template> 64 <common_name> 65 <loctext xml:lang='C'> 66 Kerberos propagation daemon for slave KDCs 67 </loctext> 68 </common_name> 69 <documentation> 70 <manpage title='kpropd' section='8' 71 manpath='/usr/share/man' /> 72 </documentation> 73 </template> 74</service> 75 76</service_bundle> 77