1<?xml version="1.0"?> 2<!-- 3CDDL HEADER START 4 5The contents of this file are subject to the terms of the 6Common Development and Distribution License (the "License"). 7You may not use this file except in compliance with the License. 8 9You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10or http://www.opensolaris.org/os/licensing. 11See the License for the specific language governing permissions 12and limitations under the License. 13 14When distributing Covered Code, include this CDDL HEADER in each 15file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16If applicable, add the following below this CDDL HEADER, with the 17fields enclosed by brackets "[]" replaced with your own identifying 18information: Portions Copyright [yyyy] [name of copyright owner] 19 20CDDL HEADER END 21--> 22<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1"> 23<!-- 24 Copyright 2009 Sun Microsystems, Inc. All rights reserved. 25 Use is subject to license terms. 26--> 27 28<service_bundle type='manifest' name='SUNWipplr:ipp-listener'> 29 30<service 31 name='application/print/ipp-listener' 32 type='service' 33 version='1'> 34 35 <create_default_instance enabled='false' /> 36 37 <dependency name='print-service' 38 grouping='require_any' 39 restart_on='refresh' 40 type='service'> 41 <service_fmri value='svc:/application/print/server' /> 42 </dependency> 43 44 <!-- Change /usr/apache2/... if Apache 2.x is elsewhere. --> 45 <exec_method 46 type='method' 47 name='start' 48 exec='/usr/apache2/2.2/bin/httpd -f /etc/lp/ipp/httpd-standalone-ipp.conf' 49 timeout_seconds='10' /> 50 51 <exec_method 52 type='method' 53 name='stop' 54 exec='/bin/pkill -f httpd-standalone-ipp.conf' 55 timeout_seconds='5' /> 56 57 <property_group name='general' type='framework'> 58 <!-- to start/stop IPP listening service--> 59 <propval name='action_authorization' type='astring' 60 value='solaris.print.admin' /> 61 <propval name='value_authorization' type='astring' 62 value='solaris.print.admin' /> 63 </property_group> 64 65 <property_group name='firewall_context' type='com.sun,fw_definition'> 66 <propval name='ipf_method' type='astring' 67 value='/lib/svc/method/print-svc ipfilter svc:/application/print/server:default' /> 68 </property_group> 69 70 <stability value='Unstable' /> 71 72 <template> 73 <common_name> 74 <loctext xml:lang='C'> 75 Internet Print Protocol Listening Service 76 </loctext> 77 </common_name> 78 <documentation> 79 <manpage title='mod_ipp' section='4' 80 manpath='/usr/share/man' /> 81 </documentation> 82 </template> 83</service> 84 85</service_bundle> 86