committing changes in /etc made by "apt install /root/check-mk-free-2.1.0p15_0.bullseye_amd64.deb"
Packages with configuration changes: +check-mk-free-2.1.0p15 0.bullseye amd64 Package changes: +check-mk-free-2.1.0p15 0.bullseye amd64
This commit is contained in:
@@ -944,6 +944,7 @@ maybe chmod 0755 'init.d/apache2'
|
|||||||
maybe chmod 0755 'init.d/apparmor'
|
maybe chmod 0755 'init.d/apparmor'
|
||||||
maybe chmod 0755 'init.d/avahi-daemon'
|
maybe chmod 0755 'init.d/avahi-daemon'
|
||||||
maybe chmod 0755 'init.d/bluetooth'
|
maybe chmod 0755 'init.d/bluetooth'
|
||||||
|
maybe chmod 0755 'init.d/check-mk-free-2.1.0p15'
|
||||||
maybe chmod 0755 'init.d/check-mk-free-2.1.0p6'
|
maybe chmod 0755 'init.d/check-mk-free-2.1.0p6'
|
||||||
maybe chmod 0755 'init.d/check-mk-free-2.1.0p8'
|
maybe chmod 0755 'init.d/check-mk-free-2.1.0p8'
|
||||||
maybe chmod 0755 'init.d/check-mk-free-2.1.0p9'
|
maybe chmod 0755 'init.d/check-mk-free-2.1.0p9'
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
/omd/versions/2.1.0p9.cfe
|
/omd/versions/2.1.0p15.cfe
|
||||||
@@ -1 +1 @@
|
|||||||
/omd/versions/2.1.0p9.cfe/lib/omd/bash_completion
|
/omd/versions/2.1.0p15.cfe/lib/omd/bash_completion
|
||||||
@@ -1 +1 @@
|
|||||||
/omd/versions/2.1.0p9.cfe/bin/omd
|
/omd/versions/2.1.0p15.cfe/bin/omd
|
||||||
@@ -1 +1 @@
|
|||||||
/omd/versions/2.1.0p9.cfe/share/man/man8/omd.8.gz
|
/omd/versions/2.1.0p15.cfe/share/man/man8/omd.8.gz
|
||||||
Executable
+63
@@ -0,0 +1,63 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Copyright (C) 2019 tribe29 GmbH - License: GNU General Public License v2
|
||||||
|
# This file is part of Checkmk (https://checkmk.com). It is subject to the terms and
|
||||||
|
# conditions defined in the file COPYING, which is part of this source code package.
|
||||||
|
|
||||||
|
# Startskript for OMD sites
|
||||||
|
|
||||||
|
### BEGIN INIT INFO
|
||||||
|
# Provides: omd-2.1.0p15.cfe
|
||||||
|
# Required-Start: $syslog
|
||||||
|
# Required-Stop: $syslog
|
||||||
|
# Default-Start: 2 3 4 5
|
||||||
|
# Default-Stop: 0 1 6
|
||||||
|
# Short-Description: OMD sites
|
||||||
|
# Description: Start and stop the sites of the OpenSource Monitoring
|
||||||
|
# Distribution (OMD)
|
||||||
|
### END INIT INFO
|
||||||
|
|
||||||
|
# -- start omd, if not disabled in /etc/default/omd
|
||||||
|
AUTOSTART=1
|
||||||
|
[ -r /etc/default/omd ] && . /etc/default/omd
|
||||||
|
|
||||||
|
VERSION=2.1.0p15.cfe
|
||||||
|
VER="-V $VERSION"
|
||||||
|
MSG="using omd version $VERSION"
|
||||||
|
OMD="/omd/versions/$VERSION/bin/omd"
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
start)
|
||||||
|
if [ "$AUTOSTART" = "1" ]; then
|
||||||
|
echo "Starting all OMD monitoring sites $MSG:"
|
||||||
|
$OMD "$1" $VER
|
||||||
|
else
|
||||||
|
echo "OMD autostart disabled, skipping ..."
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
stop)
|
||||||
|
echo "Stopping all OMD monitoring sites $MSG:"
|
||||||
|
$OMD "$1" $VER
|
||||||
|
;;
|
||||||
|
restart)
|
||||||
|
echo "Restarting all OMD monitoring sites $MSG:"
|
||||||
|
$OMD "$1" $VER
|
||||||
|
;;
|
||||||
|
reload)
|
||||||
|
echo "Reloading all OMD monitoring sites $MSG:"
|
||||||
|
$OMD "$1" $VER
|
||||||
|
;;
|
||||||
|
status)
|
||||||
|
echo "Checking state of all OMD monitoring sites $MSG:"
|
||||||
|
$OMD "$1" $VER
|
||||||
|
;;
|
||||||
|
'')
|
||||||
|
echo "usage: $PROGNAME start|stop|restart|reload|status"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Doing $1 on all OMD monitoring sites $MSG:"
|
||||||
|
$OMD "$1" $VER
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
|
||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
../init.d/check-mk-free-2.1.0p15
|
||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
../init.d/check-mk-free-2.1.0p15
|
||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
../init.d/check-mk-free-2.1.0p15
|
||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
../init.d/check-mk-free-2.1.0p15
|
||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
../init.d/check-mk-free-2.1.0p15
|
||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
../init.d/check-mk-free-2.1.0p15
|
||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
../init.d/check-mk-free-2.1.0p15
|
||||||
Reference in New Issue
Block a user