diff options
author | jperkin <jperkin@pkgsrc.org> | 2014-03-11 14:34:36 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2014-03-11 14:34:36 +0000 |
commit | 30ff9a3c34485e532105b167d6b5496c99da9e1e (patch) | |
tree | 7ee5b13abb9f96749121a307db970b8b85e953da /www/lighttpd | |
parent | 44defc51cc7a3e6fb9a76073078e8c92bb29dd7c (diff) | |
download | pkgsrc-30ff9a3c34485e532105b167d6b5496c99da9e1e.tar.gz |
Import initial SMF support for individual packages.
Diffstat (limited to 'www/lighttpd')
-rw-r--r-- | www/lighttpd/files/smf/manifest.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/www/lighttpd/files/smf/manifest.xml b/www/lighttpd/files/smf/manifest.xml new file mode 100644 index 00000000000..c762cda6667 --- /dev/null +++ b/www/lighttpd/files/smf/manifest.xml @@ -0,0 +1,34 @@ +<?xml version="1.0"?> +<!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='network' grouping='require_all' restart_on='error' type='service'> + <service_fmri value='svc:/milestone/network:default' /> + </dependency> + <dependency name='filesystem-local' grouping='require_all' restart_on='none' type='service'> + <service_fmri value='svc:/system/filesystem/local:default' /> + </dependency> + <method_context> + <method_environment> + <envvar name="LD_PRELOAD_32" value="/usr/lib/extendedFILE.so.1" /> + </method_environment> + </method_context> + <exec_method type="method" name="start" exec="@PREFIX@/sbin/lighttpd -f %{config_file}" timeout_seconds="60" /> + <exec_method type="method" name="stop" exec=":kill" timeout_seconds="60" /> + <property_group name="startd" type="framework"> + <propval name="duration" type="astring" value="contract" /> + <propval name="ignore_error" type="astring" value="core,signal" /> + </property_group> + <property_group name="application" type="application"> + <propval name="config_file" type="astring" value="@PKG_SYSCONFDIR@/lighttpd.conf" /> + </property_group> + <stability value="Evolving" /> + <template> + <common_name> + <loctext xml:lang="C">Lighttpd HTTP daemon</loctext> + </common_name> + </template> + </service> +</service_bundle> |