1<?xml version='1.0'?> 2<!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'> 3 4<!-- 5 Copyright 2007 Sun Microsystems, Inc. All rights reserved. 6 Use is subject to license terms. 7 Copyright 2019 Peter Tribble. 8 9 CDDL HEADER START 10 11 The contents of this file are subject to the terms of the 12 Common Development and Distribution License (the "License"). 13 You may not use this file except in compliance with the License. 14 15 You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 16 or http://www.opensolaris.org/os/licensing. 17 See the License for the specific language governing permissions 18 and limitations under the License. 19 20 When distributing Covered Code, include this CDDL HEADER in each 21 file and include the License file at usr/src/OPENSOLARIS.LICENSE. 22 If applicable, add the following below this CDDL HEADER, with the 23 fields enclosed by brackets "[]" replaced with your own identifying 24 information: Portions Copyright [yyyy] [name of copyright owner] 25 26 CDDL HEADER END 27 28 NOTE: This service manifest is not editable; its contents will 29 be overwritten by package or patch operations, including 30 operating system upgrade. Make customizations in a different 31 file. 32--> 33 34<service_bundle type='manifest' name='SUNWdcsr:dcs'> 35 36<service 37 name='platform/sun4u/dcs' 38 type='service' 39 version='1'> 40 41 <create_default_instance enabled='false' /> 42 43 <dependency 44 name='network' 45 grouping='require_all' 46 restart_on='none' 47 type='service'> 48 <service_fmri value='svc:/network/loopback' /> 49 </dependency> 50 51 <!-- sckmd is only required on OPL --> 52 <dependency 53 name='sckmd' 54 grouping='optional_all' 55 restart_on='none' 56 type='service'> 57 <service_fmri value='svc:/platform/sun4u/sckmd' /> 58 </dependency> 59 60 <dependency 61 name='cryptosvc' 62 grouping='require_all' 63 restart_on='none' 64 type='service'> 65 <service_fmri value='svc:/system/cryptosvc' /> 66 </dependency> 67 68 <dependency 69 name='filesystem_usr' 70 grouping='require_all' 71 restart_on='none' 72 type='service'> 73 <service_fmri value='svc:/system/filesystem/usr' /> 74 </dependency> 75 76 <dependency 77 name='nodename' 78 grouping='require_all' 79 restart_on='none' 80 type='service'> 81 <service_fmri value='svc:/system/identity:node' /> 82 </dependency> 83 84 <exec_method 85 type='method' 86 name='start' 87 exec='/lib/svc/method/svc-dcs' 88 timeout_seconds='60'> 89 </exec_method> 90 91 <exec_method 92 type='method' 93 name='stop' 94 exec=':kill -9' 95 timeout_seconds='60'> 96 </exec_method> 97 98 <stability value='Unstable' /> 99 100 <template> 101 <common_name> 102 <loctext xml:lang='C'> 103 domain configuration server 104 </loctext> 105 </common_name> 106 <documentation> 107 <manpage title='dcs' section='8' 108 manpath='/usr/share/man' /> 109 </documentation> 110 </template> 111</service> 112 113</service_bundle> 114