nut-debian/scripts/Solaris/nut-monitor.xml.in
2022-07-10 09:23:45 +02:00

128 lines
2.8 KiB
XML

<?xml version="1.0"?>
<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
<!--
#
# Copyright 2016-2017 Jim Klimov
# Service for NUT upsmon
#
-->
<service_bundle type='manifest' name='nut-monitor'>
<service name='system/power/nut-monitor' type='service' version='1'>
<!--
Configure a default instance for the service since it doesn't
require additional configuration intervention before it starts.
-->
<create_default_instance enabled='false' />
<!--
Wait for all local and usr filesystem to be mounted - project is
usually located in /usr/sbin.
-->
<dependency
name='fs-local'
type='service'
grouping='require_all'
restart_on='none'>
<service_fmri value='svc:/system/filesystem/local' />
</dependency>
<dependency
name='filesystem-usr'
grouping='require_all'
restart_on='none'
type='service'>
<service_fmri
value='svc:/system/filesystem/usr:default'/>
</dependency>
<dependency
name='config-files'
type='path'
grouping='require_all'
restart_on='refresh'>
<service_fmri value='file://localhost@CONFPATH@/upsmon.conf' />
</dependency>
<!--
Wait for syslog to be started in order to write system
messages from the kernel.
-->
<dependency
name='syslog'
grouping='optional_all'
restart_on='none'
type='service'>
<service_fmri
value='svc:/system/system-log:default'/>
</dependency>
<!--
Wait for network to be started in order to reach remote hosts.
-->
<dependency
name='network-service'
grouping='optional_all'
restart_on='none'
type='service'>
<service_fmri value='svc:/network/service' />
</dependency>
<!--
Wait for NUT upsd to be started, if it's enabled
-->
<dependency
name='nut-service'
grouping='optional_all'
restart_on='none'
type='service'>
<service_fmri value='svc:/system/power/nut-server' />
</dependency>
<!--
The nut start/stop methods.
-->
<exec_method
type='method'
name='start'
exec='@NUT_DATADIR@/solaris-smf/method/svc-nut-monitor %m'
timeout_seconds='60'/>
<exec_method
type='method'
name='stop'
exec=':kill'
timeout_seconds='60' />
<property_group name='startd' type='framework'>
<!--
Sub-process core dumps and external kill signals are not
considered errors, so the service should be restarted.
-->
<propval name='ignore_error' type='astring'
value='core,signal' />
</property_group>
<!-- Really unstable - this service should be evolved! -->
<stability value='Unstable' />
<template>
<common_name>
<loctext xml:lang='C'>
NUT ups monitoring service
</loctext>
</common_name>
<documentation>
<manpage title='upsmon' section='8'
manpath='/usr/share/man' />
<manpage title='upsmon.conf' section='5'
manpath='/usr/share/man' />
</documentation>
</template>
</service>
</service_bundle>