diff options
author | fhajny <fhajny@pkgsrc.org> | 2014-03-26 13:47:58 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2014-03-26 13:47:58 +0000 |
commit | ea31462ac4d47e1292a2323b166235290e345ca4 (patch) | |
tree | bc2b1aecba2d53ab59208140812be4a8af97d354 /security | |
parent | 8d8111a90cee6437e5f14e2d63204e058d12d811 (diff) | |
download | pkgsrc-ea31462ac4d47e1292a2323b166235290e345ca4.tar.gz |
Fix SMF manifests that were not populated properly.
Diffstat (limited to 'security')
-rw-r--r-- | security/courier-authlib/files/smf/manifest.xml | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/security/courier-authlib/files/smf/manifest.xml b/security/courier-authlib/files/smf/manifest.xml index ed5db077c21..8e32bf8f351 100644 --- a/security/courier-authlib/files/smf/manifest.xml +++ b/security/courier-authlib/files/smf/manifest.xml @@ -2,6 +2,8 @@ <!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'> <service_bundle type='manifest' name='@SMF_NAME@'> <service name='@SMF_PREFIX@/@SMF_NAME@' type='service' version='1'> + <create_default_instance enabled="false" /> + <single_instance /> <dependency name='fs-local' grouping='require_all' restart_on='none' type='service'> <service_fmri value='svc:/system/filesystem/local' /> </dependency> @@ -11,27 +13,25 @@ <dependency name='system-log' grouping='optional_all' restart_on='none' type='service'> <service_fmri value='svc:/system/system-log' /> </dependency> - <instance name='@SMF_INSTANCE@' enabled='false'> - <dependency name='config-file' grouping='require_all' restart_on='refresh' type='path'> - <service_fmri value='file://localhost@PKG_SYSCONFDIR@/authdaemonrc' /> - </dependency> - <exec_method name='start' type='method' exec='@PREFIX@/sbin/authdaemond start' timeout_seconds='120' /> - <exec_method name='stop' type='method' exec='@PREFIX@/sbin/authdaemond stop' timeout_seconds='60' /> - <property_group name='startd' type='framework'> - <propval name='ignore_error' type='astring' value='core,signal' /> - </property_group> - <property_group name='general' type='framework'> - <propval name='action_authorization' type='astring' value='solaris.smf.manage.courier-authlib' /> - </property_group> - <template> - <common_name> - <loctext xml:lang='C'>authlib - Generic authentication API for Courier mail services</loctext> - </common_name> - <documentation> - <manpage title='authlib' section='3' manpath='@PREFIX@/@PKGMANDIR@' /> - </documentation> - </template> - </instance> + <dependency name='config-file' grouping='require_all' restart_on='refresh' type='path'> + <service_fmri value='file://localhost@PKG_SYSCONFDIR@/authdaemonrc' /> + </dependency> + <exec_method name='start' type='method' exec='@PREFIX@/sbin/authdaemond start' timeout_seconds='120' /> + <exec_method name='stop' type='method' exec='@PREFIX@/sbin/authdaemond stop' timeout_seconds='60' /> + <property_group name='startd' type='framework'> + <propval name='ignore_error' type='astring' value='core,signal' /> + </property_group> + <property_group name='general' type='framework'> + <propval name='action_authorization' type='astring' value='solaris.smf.manage.courier-authlib' /> + </property_group> <stability value='Evolving' /> + <template> + <common_name> + <loctext xml:lang='C'>authlib - Generic authentication API for Courier mail services</loctext> + </common_name> + <documentation> + <manpage title='authlib' section='3' manpath='@PREFIX@/@PKGMANDIR@' /> + </documentation> + </template> </service> </service_bundle> |