mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
This eliminates nearly all of the user-facing references to Observium, including in the names of temporary files and in the metadata of PDFs. Many of these may not be used any more, but I've adjusted them anyway. These changes should also make it easier to change the branding later if it is needed. There are a few references of which I still don't understand the significance, so I've left them as-is for now. The Unix agent in particular is rather untidy.
54 lines
2.2 KiB
Bash
54 lines
2.2 KiB
Bash
#!/bin/bash
|
|
#
|
|
# +------------------------------------------------------------------+
|
|
# | _ _ |
|
|
# | ___ | |__ ___ ___ _ ____ _(_)_ _ _ __ ___ |
|
|
# | / _ \| '_ \/ __|/ _ \ '__\ \ / / | | | | '_ ` _ \ |
|
|
# | | (_) | |_) \__ \ __/ | \ V /| | |_| | | | | | | |
|
|
# | \___/|_.__/|___/\___|_| \_/ |_|\__,_|_| |_| |_| |
|
|
# | |
|
|
# | Copyright Adam Armstrong 2012 adama@observium.org |
|
|
# +------------------------------------------------------------------+
|
|
#
|
|
# +------------------------------------------------------------------+
|
|
# | Copyright Mathias Kettner 2012 mk@mathias-kettner.de |
|
|
# +------------------------------------------------------------------+
|
|
#
|
|
# This file was originally part of Check_MK.
|
|
# The official homepage is at http://mathias-kettner.de/check_mk.
|
|
#
|
|
# check_mk is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation in version 2. check_mk is distributed
|
|
# in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
|
|
# out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
# PARTICULAR PURPOSE. See the GNU General Public License for more de-
|
|
# ails. You should have received a copy of the GNU General Public
|
|
# License along with GNU Make; see the file COPYING. If not, write
|
|
# to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
# Boston, MA 02110-1301 USA.
|
|
|
|
# FIXME: rename agent
|
|
|
|
service check_mk
|
|
{
|
|
type = UNLISTED
|
|
port = 6556
|
|
socket_type = stream
|
|
protocol = tcp
|
|
wait = no
|
|
user = root
|
|
server = /usr/bin/observium_agent
|
|
|
|
# configure the IP address(es) of your Nagios server here:
|
|
only_from = 127.0.0.1
|
|
|
|
# Don't be too verbose. Don't log every check. This might be
|
|
# commented out for debugging. If this option is commented out
|
|
# the default options will be used for this service.
|
|
log_on_success =
|
|
|
|
disable = no
|
|
}
|
|
|