Add FreeBSD rc script
This commit is contained in:
parent
8415c74c46
commit
e6d199d6db
10
FreeBSD/README.md
Normal file
10
FreeBSD/README.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
FreeBSD rc script lives here. It starts ifstatd daemon for interfaces, based on your ifstatd symlinks in munin plugins subdirectory.
|
||||||
|
It should be copied to `/usr/local/etc/rc.d/` and following variable should be added to `/etc/rc.conf`:
|
||||||
|
```
|
||||||
|
ifstatd_enable="YES"
|
||||||
|
```
|
||||||
|
You can manually start it by issuing following command:
|
||||||
|
```
|
||||||
|
service ifstatd start
|
||||||
|
```
|
||||||
|
|
65
FreeBSD/ifstatd
Normal file
65
FreeBSD/ifstatd
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
# Copyright (c) 2015, Babak Farrokhi
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
# modification, are permitted provided that the following conditions
|
||||||
|
# are met:
|
||||||
|
# 1. Redistributions of source code must retain the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer.
|
||||||
|
# 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer in the
|
||||||
|
# documentation and/or other materials provided with the distribution.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE PROJECT ``AS IS'' AND ANY EXPRESS OR
|
||||||
|
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||||
|
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||||
|
# IN NO EVENT SHALL THE PROJECT BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||||
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||||
|
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
|
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
#
|
||||||
|
# PROVIDE: ifstatd
|
||||||
|
# REQUIRE: netif
|
||||||
|
# KEYWORD: nojail shutdown
|
||||||
|
#
|
||||||
|
# Add the following to /etc/rc.conf[.local] to enable this service
|
||||||
|
#
|
||||||
|
# ifstatd_enable="YES"
|
||||||
|
# ifstatd_interfaces="ix0 ix1"
|
||||||
|
#
|
||||||
|
|
||||||
|
. /etc/rc.subr
|
||||||
|
|
||||||
|
|
||||||
|
name=ifstatd
|
||||||
|
desc="Run ifstatd plugin daemon for munin agent"
|
||||||
|
rcvar=ifstatd_enable
|
||||||
|
|
||||||
|
load_rc_config $name
|
||||||
|
ifstatd_enable=${ifstatd_enable-"NO"}
|
||||||
|
|
||||||
|
start_cmd=${name}_start
|
||||||
|
stop_cmd=${name}_stop
|
||||||
|
|
||||||
|
ifstatd_start()
|
||||||
|
{
|
||||||
|
MUNIN_PLUGSTATE="/var/munin/plugin-state/root/"
|
||||||
|
export MUNIN_PLUGSTATE
|
||||||
|
for p in `find /usr/local/etc/munin/plugins/ -name "ifstatd_*" -type l`; do
|
||||||
|
${p} acquire
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
ifstatd_stop()
|
||||||
|
{
|
||||||
|
pkill ifstatd_
|
||||||
|
}
|
||||||
|
|
||||||
|
run_rc_command "$1"
|
Loading…
x
Reference in New Issue
Block a user