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