Import of pkgsrc-2014Q1
This commit is contained in:
39
sysutils/munin-node/files/node/node.d.netbsd/entropy.in
Normal file
39
sysutils/munin-node/files/node/node.d.netbsd/entropy.in
Normal file
@@ -0,0 +1,39 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Plugin to monitor available entropy
|
||||
#
|
||||
# Usage: Link or copy into /etc/munin/node.d/
|
||||
#
|
||||
# Magic markers (optional - only used by munin-config and some
|
||||
# installation scripts):
|
||||
#
|
||||
#%# family=auto
|
||||
#%# capabilities=autoconf
|
||||
|
||||
|
||||
|
||||
if [ "$1" = "autoconf" ]; then
|
||||
if [ -x /sbin/rndctl ]; then
|
||||
echo yes
|
||||
exit 0
|
||||
else
|
||||
echo no
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
if [ "$1" = "config" ]; then
|
||||
echo 'graph_title Available entropy'
|
||||
echo 'graph_args --base 1000 -l 0'
|
||||
echo 'graph_vlabel entropy (bytes)'
|
||||
echo 'graph_scale no'
|
||||
echo 'graph_category system'
|
||||
echo 'graph_info This graph shows the amount of entropy available in the system.'
|
||||
echo 'entropy.label entropy'
|
||||
echo 'entropy.info The number of random bytes available. This is typically used by cryptographic applications.'
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo -n "entropy.value "
|
||||
/sbin/rndctl -s | /usr/bin/awk '/bits currently stored/ { print $1 }'
|
||||
37
sysutils/munin-node/files/smf/manifest.xml
Normal file
37
sysutils/munin-node/files/smf/manifest.xml
Normal file
@@ -0,0 +1,37 @@
|
||||
<?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" grouping="require_all" restart_on="error" type="service">
|
||||
<service_fmri value="svc:/system/filesystem/local" />
|
||||
</dependency>
|
||||
<dependency name='config-file' grouping='require_all' restart_on='refresh' type='path'>
|
||||
<service_fmri value='file://@PKG_SYSCONFDIR@/munin-node.conf'/>
|
||||
</dependency>
|
||||
<method_context>
|
||||
<method_environment>
|
||||
<envvar name="PATH" value="@PREFIX@/bin:@PREFIX@/sbin:/usr/xpg4/bin:/usr/bin:/usr/sbin:/usr/sfw/bin:/usr/ccs/bin" />
|
||||
</method_environment>
|
||||
</method_context>
|
||||
<exec_method type="method" name="start" exec="@PREFIX@/sbin/munin-node" 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@/munin-node.conf" />
|
||||
</property_group>
|
||||
<stability value="Evolving" />
|
||||
<template>
|
||||
<common_name>
|
||||
<loctext xml:lang="C">Munin node</loctext>
|
||||
</common_name>
|
||||
</template>
|
||||
</service>
|
||||
</service_bundle>
|
||||
Reference in New Issue
Block a user