Compare commits
No commits in common. "master" and "20190408" have entirely different histories.
3
.github/FUNDING.yml
vendored
3
.github/FUNDING.yml
vendored
@ -1,3 +0,0 @@
|
|||||||
# These are supported funding model platforms
|
|
||||||
|
|
||||||
github: patvdv
|
|
42
README.md
42
README.md
@ -10,15 +10,15 @@ Health checker for UNIX/Linux is a small framework of monitoring scripts. It is
|
|||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
* *ksh88/ksh93* (mksh/pdksh will work also but YMMV)
|
* ksh88/ksh93 (mksh/pdksh will work also but YMMV)
|
||||||
* some disk space for storing logs & event files
|
* some disk space for storing logs & event files
|
||||||
* system dependent tools/utilities (see individual health checks)
|
* system dependant tools/utilities (see individual health checks)
|
||||||
* UNIX *cron* or other scheduler
|
* UNIX cron or other scheduler
|
||||||
* execute as user *root* only
|
* execute as user root only
|
||||||
|
|
||||||
## Downloads
|
## Build
|
||||||
|
|
||||||
See the [Releases](https://github.com/patvdv/check_health/releases) page.
|
Use the build templates & scripts in the `build/` directory to roll your own packages.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ Install the core bundle:
|
|||||||
zypper install hc-linux-<version>.noarch.rpm
|
zypper install hc-linux-<version>.noarch.rpm
|
||||||
pacman -U hc-linux-<version>-any.pkg.tar.xz
|
pacman -U hc-linux-<version>-any.pkg.tar.xz
|
||||||
|
|
||||||
Install the Linux OS plugins bundle:
|
Install the Linux plugin bundle:
|
||||||
|
|
||||||
yum localinstall hc-linux-platform-<version>.noarch.rpm
|
yum localinstall hc-linux-platform-<version>.noarch.rpm
|
||||||
dpkg --install hc-linux-platform-<version>.noarch.rpm
|
dpkg --install hc-linux-platform-<version>.noarch.rpm
|
||||||
@ -54,33 +54,20 @@ Install the core bundle:
|
|||||||
|
|
||||||
installp -Xap -d hc-aix-<version>.bff all
|
installp -Xap -d hc-aix-<version>.bff all
|
||||||
|
|
||||||
Install the AIX OS plugins bundle:
|
Install the AIX plugin bundle:
|
||||||
|
|
||||||
installp -Xap -d hc-aix-platform-<version> all
|
installp -Xap -d hc-aix-platform-<version> all
|
||||||
|
|
||||||
### Clusterware/Exadata
|
### Exadata
|
||||||
|
|
||||||
Install the core bundle:
|
Install the core bundle:
|
||||||
|
|
||||||
yum localinstall hc-linux-<version>.noarch.rpm
|
yum localinstall hc-linux-<version>.noarch.rpm
|
||||||
|
|
||||||
Install Clusterware/Exadata Linux plugin bundle(s):
|
Install the Linux plugin bundle:
|
||||||
|
|
||||||
yum localinstall hc-clusterware-platform-<version>.noarch.rpm
|
|
||||||
yum localinstall hc-exadata-platform-<version>.noarch.rpm
|
yum localinstall hc-exadata-platform-<version>.noarch.rpm
|
||||||
|
|
||||||
### Serviceguard
|
|
||||||
|
|
||||||
Install the core bundle:
|
|
||||||
|
|
||||||
swinstall -x mount_all_filesystems=false -s /tmp/hc-hpux-<version>.sd \*
|
|
||||||
yum localinstall hc-linux-<version>.noarch.rpm
|
|
||||||
|
|
||||||
Install Serviceguard plugin bundle(s):
|
|
||||||
|
|
||||||
swinstall -x mount_all_filesystems=false -s /tmp/hc-serviceguard-platform-<version>.sd \*
|
|
||||||
yum localinstall hc-serviceguard-platform-<version>.noarch.rpm
|
|
||||||
|
|
||||||
### Miscellaneous
|
### Miscellaneous
|
||||||
|
|
||||||
Additionally, there may be bundles for display or notification plugins, e.g.:
|
Additionally, there may be bundles for display or notification plugins, e.g.:
|
||||||
@ -90,11 +77,6 @@ Additionally, there may be bundles for display or notification plugins, e.g.:
|
|||||||
* hc-display-terse
|
* hc-display-terse
|
||||||
* hc-notify-eif
|
* hc-notify-eif
|
||||||
* hc-notify-sms
|
* hc-notify-sms
|
||||||
* hc-notify-slack
|
|
||||||
|
|
||||||
## Configure & deploy
|
|
||||||
|
|
||||||
An Ansible role is available at: https://github.com/patvdv/kudos.check_health
|
|
||||||
|
|
||||||
## Execute (examples)
|
## Execute (examples)
|
||||||
|
|
||||||
@ -137,19 +119,19 @@ An Ansible role is available at: https://github.com/patvdv/kudos.check_health
|
|||||||
/opt/hc/bin/check_health.sh --report --today
|
/opt/hc/bin/check_health.sh --report --today
|
||||||
/opt/hc/bin/check_health.sh --report --newer=20180101
|
/opt/hc/bin/check_health.sh --report --newer=20180101
|
||||||
/opt/hc/bin/check_health.sh --report --id=20160704154001 --detail
|
/opt/hc/bin/check_health.sh --report --id=20160704154001 --detail
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
* **Alerting** on failed health checks:
|
* **Alerting** on failed health checks:
|
||||||
```
|
```
|
||||||
/opt/hc/bin/check_health.sh --hc=check_hpux_root_crontab --run --notify=mail --mail-to="alert@acme.com"
|
/opt/hc/bin/check_health.sh --hc=check_hpux_root_crontab --run --notify=mail --mail-to="alert@acme.com"
|
||||||
/opt/hc/bin/check_health.sh --hc=check_linux_fs_usage --run --notify=slack
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## References
|
## References
|
||||||
|
|
||||||
### Documentation
|
### Documentation
|
||||||
|
|
||||||
More documentation can be found at <https://www.kudos.be/check_health/>
|
More documentation can be found at http://www.kudos.be/Projects/Health_checker.html
|
||||||
|
|
||||||
### Logo
|
### Logo
|
||||||
|
|
||||||
|
@ -32,14 +32,12 @@ Fileset
|
|||||||
/opt/hc/lib/platform/aix/check_aix_subsystems.sh
|
/opt/hc/lib/platform/aix/check_aix_subsystems.sh
|
||||||
/opt/hc/lib/platform/aix/check_aix_sysbackup.sh
|
/opt/hc/lib/platform/aix/check_aix_sysbackup.sh
|
||||||
/opt/hc/lib/platform/aix/check_aix_topasrec.sh
|
/opt/hc/lib/platform/aix/check_aix_topasrec.sh
|
||||||
/opt/hc/lib/platform/aix/check_aix_uptime.sh
|
|
||||||
/etc/opt/hc
|
/etc/opt/hc
|
||||||
/etc/opt/hc/check_aix_file_age.conf.dist
|
/etc/opt/hc/check_aix_file_age.conf.dist
|
||||||
/etc/opt/hc/check_aix_file_change.conf.dist
|
/etc/opt/hc/check_aix_file_change.conf.dist
|
||||||
/etc/opt/hc/check_aix_root_crontab.conf.dist
|
/etc/opt/hc/check_aix_root_crontab.conf.dist
|
||||||
/etc/opt/hc/check_aix_subsystems.conf.dist
|
/etc/opt/hc/check_aix_subsystems.conf.dist
|
||||||
/etc/opt/hc/check_aix_sysbackup.conf.dist
|
/etc/opt/hc/check_aix_sysbackup.conf.dist
|
||||||
/etc/opt/hc/check_aix_uptime.conf.dist
|
|
||||||
EOROOTFiles
|
EOROOTFiles
|
||||||
Relocatable: N
|
Relocatable: N
|
||||||
EOFileset
|
EOFileset
|
||||||
|
@ -1 +0,0 @@
|
|||||||
*prereq hc_aix.rte
|
|
@ -1,31 +0,0 @@
|
|||||||
Package Name: hc_notify_slack
|
|
||||||
Package VRMF: %BUILD_DATE%
|
|
||||||
Update: N
|
|
||||||
Fileset
|
|
||||||
Fileset Name: hc_notify_slack.rte
|
|
||||||
Fileset VRMF: %BUILD_DATE%
|
|
||||||
Fileset Description: Health Checker - core Slack plugin
|
|
||||||
USRLIBLPPFiles
|
|
||||||
EOUSRLIBLPPFiles
|
|
||||||
ROOTLIBLPPFiles
|
|
||||||
Post-installation Script: /export/nim/build/hc_notify_slack/scripts/hc_notify_slack.postinstall
|
|
||||||
Unpost-installation Script: /export/nim/build/hc_notify_slack/scripts/hc_notify_slack.postuninstall
|
|
||||||
EOROOTLIBLPPFiles
|
|
||||||
Bosboot required: N
|
|
||||||
License agreement acceptance required: N
|
|
||||||
Include license files in this package: N
|
|
||||||
Requisites: /export/nim/build/hc_notify_slack/hc_notify_slack.reqs
|
|
||||||
USRFiles
|
|
||||||
EOUSRFiles
|
|
||||||
ROOT Part: Y
|
|
||||||
ROOTFiles
|
|
||||||
/opt/hc/lib
|
|
||||||
/opt/hc/lib/core
|
|
||||||
/opt/hc/lib/platform/aix/notify_slack.sh
|
|
||||||
/etc/opt/hc
|
|
||||||
/etc/opt/hc/core
|
|
||||||
/etc/opt/hc/core/providers
|
|
||||||
/etc/opt/hc/core/providers/notify_slack.conf.dist
|
|
||||||
EOROOTFiles
|
|
||||||
Relocatable: N
|
|
||||||
EOFileset
|
|
@ -1,51 +0,0 @@
|
|||||||
#!/usr/bin/env ksh
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) post-install script for hc_notify_slack LPP package
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) Copyright (C) 2022 by KUDOS BVBA (info@kudos.be). All rights reserved.
|
|
||||||
#
|
|
||||||
# This program is a free software; you can redistribute it and/or modify
|
|
||||||
# it under the same terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
||||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of ETC dir
|
|
||||||
HC_ETC_DIR="/etc/opt/hc"
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
|
|
||||||
print "INFO: starting post-install script ..."
|
|
||||||
|
|
||||||
# copy plugin config file from dist (if needed)
|
|
||||||
if [[ ! -f ${HC_ETC_DIR}/core/providers/notify_slack.conf ]]
|
|
||||||
then
|
|
||||||
cp -p ${HC_ETC_DIR}/core/providers/notify_slack.conf.dist ${HC_ETC_DIR}/core/providers/notify_slack.conf >/dev/null || \
|
|
||||||
{
|
|
||||||
print -u2 "ERROR: could not copy plugin config file in ${HC_ETC_DIR}/core/providers"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks || print -u2 "WARN: updating symlinks failed"
|
|
||||||
else
|
|
||||||
print -u2 "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
|
||||||
fi
|
|
||||||
|
|
||||||
print "INFO: finished post-install script"
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# END of script
|
|
||||||
#******************************************************************************
|
|
@ -1,48 +0,0 @@
|
|||||||
#!/usr/bin/env ksh
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) post-uninstall script for hc_notify_slack LPP package
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) Copyright (C) 2022 by KUDOS BVBA (info@kudos.be). All rights reserved.
|
|
||||||
#
|
|
||||||
# This program is a free software; you can redistribute it and/or modify
|
|
||||||
# it under the same terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
||||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of the HC configuration files
|
|
||||||
HC_ETC_DIR="/etc/opt/hc"
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
|
|
||||||
print "INFO: starting post-uninstall script ..."
|
|
||||||
|
|
||||||
# remove plugin configuration file (.dist only)
|
|
||||||
if [[ -d ${HC_ETC_DIR}/core/providers ]]
|
|
||||||
then
|
|
||||||
rm -f ${HC_ETC_DIR}/core/providers/notify_slack.conf.dist >/dev/null
|
|
||||||
(( $? == 0 )) || echo "WARN: could not remove plugin config file in directory ${HC_ETC_DIR}/core/providers"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks || print -u2 "WARN: updating symlinks failed"
|
|
||||||
else
|
|
||||||
print -u2 "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
|
||||||
fi
|
|
||||||
|
|
||||||
print "INFO: finished post-uninstall script"
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# END of script
|
|
||||||
#******************************************************************************
|
|
@ -1,29 +0,0 @@
|
|||||||
# Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
|
||||||
|
|
||||||
_pkgname="check_health"
|
|
||||||
pkgname="hc-clusterware-platform"
|
|
||||||
pkgver="%BUILD_DATE%"
|
|
||||||
pkgrel=1
|
|
||||||
pkgdesc="The KUDOS Health Checker (HC) for UNIX (Clusterware plugins)"
|
|
||||||
arch=("any")
|
|
||||||
url="https://github.com/patvdv/${_pkgname}"
|
|
||||||
license=('GPL3')
|
|
||||||
makedepends=('git')
|
|
||||||
depends=('hc-linux')
|
|
||||||
source=("${_pkgname}::git+${url}.git#branch=master")
|
|
||||||
install=".install"
|
|
||||||
sha256sums=('SKIP')
|
|
||||||
|
|
||||||
package() {
|
|
||||||
cd "${srcdir}/${_pkgname}"
|
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib
|
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib/platform
|
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib/platform/clusterware
|
|
||||||
install -D -m 755 opt/hc/lib/platform/clusterware/check_clusterware_resource_config.sh ${pkgdir}/opt/hc/lib/platform/clusterware/check_clusterware_resource_config.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/clusterware/check_clusterware_resource_status.sh ${pkgdir}/opt/hc/lib/platform/clusterware/check_clusterware_resource_status.sh
|
|
||||||
install -d -m 755 ${pkgdir}/etc/opt/hc
|
|
||||||
install -D -m 644 etc/opt/hc/check_clusterware_resource_config.conf.dist ${pkgdir}/etc/opt/hc/check_clusterware_resource_config.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_clusterware_resource_status.conf.dist ${pkgdir}/etc/opt/hc/check_clusterware_resource_status.conf.dist
|
|
||||||
install -d -m 755 ${pkgdir}/etc/opt/hc/core
|
|
||||||
install -d -m 755 ${pkgdir}/etc/opt/hc/core/templates
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
Package: hc-clusterware-platform
|
|
||||||
Version: %BUILD_DATE%
|
|
||||||
Architecture: all
|
|
||||||
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
|
||||||
Essential: no
|
|
||||||
Installed-Size: 300
|
|
||||||
Depends: hc-linux
|
|
||||||
Section: tools
|
|
||||||
Priority: extra
|
|
||||||
Description: The KUDOS Health Checker (HC) for UNIX (Clusterware plugins).
|
|
@ -1,83 +0,0 @@
|
|||||||
%define build_timestamp %(date +"%Y%m%d")
|
|
||||||
|
|
||||||
Name: hc-clusterware-platform
|
|
||||||
Version: %{build_timestamp}
|
|
||||||
Release: 1
|
|
||||||
|
|
||||||
Summary: The KUDOS Health Checker (HC) for UNIX (Clusterware plugins)
|
|
||||||
Group: Tools/Monitoring
|
|
||||||
|
|
||||||
License: GNU General Public License either version 2 of the License, or (at your option) any later version
|
|
||||||
URL: http://www.kudos.be
|
|
||||||
|
|
||||||
Requires: ksh,hc-linux
|
|
||||||
BuildArch: noarch
|
|
||||||
BuildRoot: %{_topdir}/%{name}-%{version}-root
|
|
||||||
|
|
||||||
%description
|
|
||||||
The Health Checker is collection of scripts (plugins) designed to perform regular - but not intensive - health checks on UNIX/Linux systems. It provides plugins for AIX, HP-UX and Linux as well customer specific checks. Checks may include topics such file system mounts, process checks, file consistency etc.
|
|
||||||
This package contains Serviceguard platform specific plugins.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
|
|
||||||
%build
|
|
||||||
|
|
||||||
%install
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/platform
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/platform/clusterware
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/clusterware/check_clusterware_resource_config.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/clusterware/check_clusterware_resource_config.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/clusterware/check_clusterware_resource_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/clusterware/check_clusterware_resource_status.sh
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_clusterware_resource_config.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_clusterware_resource_config.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_clusterware_resource_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_clusterware_resource_status.conf.dist
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc/core
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc/core/templates
|
|
||||||
|
|
||||||
%post
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-install script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
|
||||||
|
|
||||||
%postun
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-uninstall script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-uninstall script"
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root,755)
|
|
||||||
%dir /opt/hc/lib
|
|
||||||
%dir /opt/hc/lib/platform
|
|
||||||
%dir /opt/hc/lib/platform/clusterware
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/clusterware/check_clusterware_resource_config.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/clusterware/check_clusterware_resource_status.sh
|
|
||||||
%dir /etc/opt/hc
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_clusterware_resource_config.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_clusterware_resource_status.conf.dist
|
|
||||||
%dir /etc/opt/hc/core
|
|
||||||
%dir /etc/opt/hc/core/templates
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Sat Apr 20 2019 <patrick@kudos.be> - 0.0.1
|
|
||||||
- Initial build
|
|
@ -1,53 +0,0 @@
|
|||||||
#!/usr/bin/env ksh
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) build script for HC RPM packages (uses 'rpmbuild')
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) Copyright (C) 2014 by KUDOS BVBA (info@kudos.be). All rights reserved.
|
|
||||||
#
|
|
||||||
# This program is a free software; you can redistribute it and/or modify
|
|
||||||
# it under the same terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
||||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# Requires following build (dir) structures:
|
|
||||||
#
|
|
||||||
# hc_build_linux_rpms.sh
|
|
||||||
# BUILD/
|
|
||||||
# BUILDROOT/
|
|
||||||
# RPMS/
|
|
||||||
# SOURCES/opt/
|
|
||||||
# SOURCES/opt/hc/bin/<hc_scripts>
|
|
||||||
# SOURCES/opt/hc/lib/*/<hc_plugins>
|
|
||||||
# SOURCES/etc/opt/hc/<hc_configs>
|
|
||||||
# SPECS/<spec_files>
|
|
||||||
# SRPMS/
|
|
||||||
#
|
|
||||||
# Build order:
|
|
||||||
# 1) Copy sources/scripts to the correct locations
|
|
||||||
# 2) Copy template, build and installer script files into correct locations
|
|
||||||
# 3) Execute hc_build_linux_rpms.sh
|
|
||||||
# 4) RPM packages may be found in the RPMS directory
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
BUILD_DIR="$(dirname $0)"
|
|
||||||
|
|
||||||
# clean up previous packages
|
|
||||||
rm -f ${BUILD_DIR}/RPMS/*/* >/dev/null
|
|
||||||
|
|
||||||
# build main packages
|
|
||||||
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-clusterware-platform.spec
|
|
||||||
|
|
||||||
print "List of built packages:"
|
|
||||||
ls -l ${BUILD_DIR}/RPMS/*/*
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# END of script
|
|
||||||
#******************************************************************************
|
|
32
build/exadata/ARCH/hc-exadata-platform/PKGBUILD
Normal file
32
build/exadata/ARCH/hc-exadata-platform/PKGBUILD
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
||||||
|
|
||||||
|
_pkgname="check_health"
|
||||||
|
pkgname="hc-exadata-platform"
|
||||||
|
pkgver="%BUILD_DATE%"
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="The KUDOS Health Checker (HC) for UNIX (Exadata platform plugins)"
|
||||||
|
arch=("any")
|
||||||
|
url="https://github.com/patvdv/${_pkgname}"
|
||||||
|
license=('GPL3')
|
||||||
|
makedepends=('git')
|
||||||
|
depends=('hc-linux')
|
||||||
|
source=("${_pkgname}::git+${url}.git#branch=master")
|
||||||
|
install=".install"
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${srcdir}/${_pkgname}"
|
||||||
|
install -d -m 755 ${pkgdir}/opt/hc/lib
|
||||||
|
install -d -m 755 ${pkgdir}/opt/hc/lib/platform
|
||||||
|
install -d -m 755 ${pkgdir}/opt/hc/lib/platform/exadata
|
||||||
|
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_zfs_logs.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_zfs_logs.sh
|
||||||
|
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_zfs_services.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_zfs_services.sh
|
||||||
|
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_zfs_share_replication.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_zfs_share_replication.sh
|
||||||
|
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_zfs_share_usage.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_zfs_share_usage.sh
|
||||||
|
install -d -m 755 ${pkgdir}/etc/opt/hc
|
||||||
|
install -D -m 644 etc/opt/hc/check_exadata_zfs_logs.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_zfs_logs.conf.dist
|
||||||
|
install -D -m 644 etc/opt/hc/check_exadata_zfs_services.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_zfs_services.conf.dist
|
||||||
|
install -D -m 644 etc/opt/hc/check_exadata_zfs_share_replication.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_zfs_share_replication.conf.dist
|
||||||
|
install -D -m 644 etc/opt/hc/check_exadata_zfs_share_usage.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_zfs_share_usage.conf.dist
|
||||||
|
|
||||||
|
}
|
92
build/exadata/SPECS/hc-exadata-platform.spec
Normal file
92
build/exadata/SPECS/hc-exadata-platform.spec
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
%define build_timestamp %(date +"%Y%m%d")
|
||||||
|
|
||||||
|
Name: hc-exadata-platform
|
||||||
|
Version: %{build_timestamp}
|
||||||
|
Release: 1
|
||||||
|
|
||||||
|
Summary: The KUDOS Health Checker (HC) for UNIX (Exadata platform plugins)
|
||||||
|
Group: Tools/Monitoring
|
||||||
|
|
||||||
|
License: GNU General Public License either version 2 of the License, or (at your option) any later version
|
||||||
|
URL: http://www.kudos.be
|
||||||
|
|
||||||
|
Requires: ksh,hc-linux
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRoot: %{_topdir}/%{name}-%{version}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
The Health Checker is collection of scripts (plugins) designed to perform regular - but not intensive - health checks on UNIX/Linux systems. It provides plugins for AIX, HP-UX and Linux as well customer specific checks. Checks may include topics such file system mounts, process checks, file consistency etc.
|
||||||
|
This package contains platform/OS specific plugins.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
|
||||||
|
%build
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib
|
||||||
|
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/platform
|
||||||
|
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata
|
||||||
|
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_zfs_logs.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_zfs_logs.sh
|
||||||
|
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_zfs_services.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_zfs_services.sh
|
||||||
|
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_zfs_share_replication.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_zfs_share_replication.sh
|
||||||
|
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_zfs_share_usage.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_zfs_share_usage.sh
|
||||||
|
|
||||||
|
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc
|
||||||
|
cp ../SOURCES/etc/opt/hc/check_exadata_zfs_logs.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_zfs_logs.conf.dist
|
||||||
|
cp ../SOURCES/etc/opt/hc/check_exadata_zfs_services.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_zfs_services.conf.dist
|
||||||
|
cp ../SOURCES/etc/opt/hc/check_exadata_zfs_share_replication.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_zfs_share_replication.conf.dist
|
||||||
|
cp ../SOURCES/etc/opt/hc/check_exadata_zfs_share_usage.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_zfs_share_usage.conf.dist
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
# ------------------------- CONFIGURATION starts here -------------------------
|
||||||
|
# location of check_health.sh
|
||||||
|
HC_BIN="/opt/hc/bin/check_health.sh"
|
||||||
|
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
||||||
|
# ------------------------- CONFIGURATION ends here ---------------------------
|
||||||
|
echo "INFO: starting post-install script ..."
|
||||||
|
# refresh symbolic FPATH links
|
||||||
|
if [[ -x ${HC_BIN} ]]
|
||||||
|
then
|
||||||
|
${HC_BIN} --fix-symlinks
|
||||||
|
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
||||||
|
fi
|
||||||
|
echo "INFO: finished post-install script"
|
||||||
|
|
||||||
|
%postun
|
||||||
|
# ------------------------- CONFIGURATION starts here -------------------------
|
||||||
|
# location of check_health.sh
|
||||||
|
HC_BIN="/opt/hc/bin/check_health.sh"
|
||||||
|
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
||||||
|
# ------------------------- CONFIGURATION ends here ---------------------------
|
||||||
|
echo "INFO: starting post-uninstall script ..."
|
||||||
|
# refresh symbolic FPATH links
|
||||||
|
if [[ -x ${HC_BIN} ]]
|
||||||
|
then
|
||||||
|
${HC_BIN} --fix-symlinks
|
||||||
|
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
||||||
|
fi
|
||||||
|
echo "INFO: finished post-uninstall script"
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,755)
|
||||||
|
%dir /opt/hc/lib
|
||||||
|
%dir /opt/hc/lib/platform
|
||||||
|
%dir /opt/hc/lib/platform/exadata
|
||||||
|
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_zfs_logs.sh
|
||||||
|
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_zfs_services.sh
|
||||||
|
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_zfs_share_replication.sh
|
||||||
|
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_zfs_share_usage.sh
|
||||||
|
%dir /etc/opt/hc
|
||||||
|
%attr(644, root, root) /etc/opt/hc/check_exadata_zfs_logs.conf.dist
|
||||||
|
%attr(644, root, root) /etc/opt/hc/check_exadata_zfs_services.conf.dist
|
||||||
|
%attr(644, root, root) /etc/opt/hc/check_exadata_zfs_share_replication.conf.dist
|
||||||
|
%attr(644, root, root) /etc/opt/hc/check_exadata_zfs_share_usage.conf.dist
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Mar 26 2019 <patrick@kudos.be> - 0.1.0
|
||||||
|
- New git tree organization
|
||||||
|
* Mon Feb 18 2019 <patrick@kudos.be> - 0.0.1
|
||||||
|
- Initial build
|
@ -1,33 +0,0 @@
|
|||||||
# -- post-install --
|
|
||||||
post_install() {
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-install script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
|
||||||
}
|
|
||||||
|
|
||||||
# -- post-remove --
|
|
||||||
post_remove() {
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-uninstall script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-uninstall script"
|
|
||||||
}
|
|
@ -1,54 +0,0 @@
|
|||||||
# Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
|
||||||
|
|
||||||
_pkgname="check_health"
|
|
||||||
pkgname="hc-exadata-platform"
|
|
||||||
pkgver="%BUILD_DATE%"
|
|
||||||
pkgrel=1
|
|
||||||
pkgdesc="The KUDOS Health Checker (HC) for UNIX (Exadata platform plugins)"
|
|
||||||
arch=("any")
|
|
||||||
url="https://github.com/patvdv/${_pkgname}"
|
|
||||||
license=('GPL3')
|
|
||||||
makedepends=('git')
|
|
||||||
depends=('hc-linux')
|
|
||||||
source=("${_pkgname}::git+${url}.git#branch=master")
|
|
||||||
install=".install"
|
|
||||||
sha256sums=('SKIP')
|
|
||||||
|
|
||||||
package() {
|
|
||||||
cd "${srcdir}/${_pkgname}"
|
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib
|
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/core
|
|
||||||
install -D -m 755 opt/hc/lib/core/include_exadata.sh ${pkgdir}/opt/hc/lib/core/include_exadata.sh
|
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib/platform
|
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib/platform/exadata
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_cell_alerts.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_cell_alerts.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_cell_celldisks.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_cell_celldisks.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_cell_flash.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_cell_flash.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_cell_griddisks.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_cell_griddisks.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_cell_luns.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_cell_luns.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_cell_megaraid.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_cell_megaraid.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_cell_physicaldisks.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_cell_physicaldisks.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_ib_status.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_ib_status.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_megaraid.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_megaraid.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_zfs_cluster.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_zfs_cluster.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_zfs_logs.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_zfs_logs.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_zfs_pool_usage.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_zfs_pool_usage.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_zfs_services.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_zfs_services.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_zfs_share_replication.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_zfs_share_replication.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/exadata/check_exadata_zfs_share_usage.sh ${pkgdir}/opt/hc/lib/platform/exadata/check_exadata_zfs_share_usage.sh
|
|
||||||
install -d -m 755 ${pkgdir}/etc/opt/hc
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_cell_alerts.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_cell_alerts.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_cell_celldisks.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_cell_celldisks.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_cell_flash.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_cell_flash.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_cell_griddisks.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_cell_griddisks.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_cell_luns.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_cell_luns.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_cell_megaraid.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_cell_megaraid.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_cell_physicaldisks.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_cell_physicaldisks.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_megaraid.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_megaraid.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_zfs_cluster.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_zfs_cluster.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_zfs_logs.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_zfs_logs.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_zfs_pool_usage.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_zfs_pool_usage.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_zfs_services.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_zfs_services.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_zfs_share_replication.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_zfs_share_replication.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_exadata_zfs_share_usage.conf.dist ${pkgdir}/etc/opt/hc/check_exadata_zfs_share_usage.conf.dist
|
|
||||||
}
|
|
@ -1,16 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-install script ..."
|
|
||||||
# debian: reset ownerships
|
|
||||||
chown -R root:root /opt/hc /etc/opt/hc 2>/dev/null
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
|
@ -1,14 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-uninstall script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-uninstall script"
|
|
@ -1,154 +0,0 @@
|
|||||||
%define build_timestamp %(date +"%Y%m%d")
|
|
||||||
|
|
||||||
Name: hc-exadata-platform
|
|
||||||
Version: %{build_timestamp}
|
|
||||||
Release: 1
|
|
||||||
|
|
||||||
Summary: The KUDOS Health Checker (HC) for UNIX (Exadata platform plugins)
|
|
||||||
Group: Tools/Monitoring
|
|
||||||
|
|
||||||
License: GNU General Public License either version 2 of the License, or (at your option) any later version
|
|
||||||
URL: http://www.kudos.be
|
|
||||||
|
|
||||||
Requires: ksh,hc-linux
|
|
||||||
BuildArch: noarch
|
|
||||||
BuildRoot: %{_topdir}/%{name}-%{version}-root
|
|
||||||
|
|
||||||
%description
|
|
||||||
The Health Checker is collection of scripts (plugins) designed to perform regular - but not intensive - health checks on UNIX/Linux systems. It provides plugins for AIX, HP-UX and Linux as well customer specific checks. Checks may include topics such file system mounts, process checks, file consistency etc.
|
|
||||||
This package contains platform/OS specific plugins.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
|
|
||||||
%build
|
|
||||||
|
|
||||||
%install
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/core
|
|
||||||
cp ../SOURCES/opt/hc/lib/core/include_exadata.sh $RPM_BUILD_ROOT/opt/hc/lib/core
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/platform
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_cell_alerts.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_cell_alerts.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_cell_celldisks.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_cell_celldisks.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_cell_flash.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_cell_flash.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_cell_griddisks.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_cell_griddisks.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_cell_luns.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_cell_luns.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_cell_megaraid.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_cell_megaraid.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_cell_physicaldisks.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_cell_physicaldisks.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_ib_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_ib_status.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_megaraid.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_megaraid.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_zfs_cluster.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_zfs_cluster.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_zfs_logs.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_zfs_logs.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_zfs_pool_usage.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_zfs_pool_usage.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_zfs_services.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_zfs_services.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_zfs_share_replication.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_zfs_share_replication.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/exadata/check_exadata_zfs_share_usage.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/exadata/check_exadata_zfs_share_usage.sh
|
|
||||||
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_cell_alerts.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_cell_alerts.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_cell_celldisks.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_cell_celldisks.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_cell_flash.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_cell_flash.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_cell_griddisks.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_cell_griddisks.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_cell_luns.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_cell_luns.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_cell_megaraid.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_cell_megaraid.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_cell_physicaldisks.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_cell_physicaldisks.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_megaraid.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_megaraid.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_zfs_cluster.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_zfs_cluster.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_zfs_logs.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_zfs_logs.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_zfs_pool_usage.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_zfs_pool_usage.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_zfs_services.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_zfs_services.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_zfs_share_replication.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_zfs_share_replication.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_exadata_zfs_share_usage.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_exadata_zfs_share_usage.conf.dist
|
|
||||||
|
|
||||||
|
|
||||||
%post
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-install script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
|
||||||
|
|
||||||
%postun
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-uninstall script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-uninstall script"
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root,755)
|
|
||||||
%dir /opt/hc/lib
|
|
||||||
%dir /opt/hc/lib/core
|
|
||||||
%attr(755, root, root) /opt/hc/lib/core/include_exadata.sh
|
|
||||||
%dir /opt/hc/lib/platform
|
|
||||||
%dir /opt/hc/lib/platform/exadata
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_cell_alerts.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_cell_celldisks.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_cell_flash.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_cell_griddisks.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_cell_luns.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_cell_megaraid.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_cell_physicaldisks.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_ib_status.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_megaraid.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_zfs_cluster.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_zfs_logs.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_zfs_pool_usage.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_zfs_services.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_zfs_share_replication.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/exadata/check_exadata_zfs_share_usage.sh
|
|
||||||
%dir /etc/opt/hc
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_cell_alerts.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_cell_celldisks.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_cell_flash.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_cell_griddisks.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_cell_luns.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_cell_megaraid.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_cell_physicaldisks.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_megaraid.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_zfs_cluster.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_zfs_logs.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_zfs_pool_usage.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_zfs_services.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_zfs_share_replication.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_exadata_zfs_share_usage.conf.dist
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Tue Jul 07 2020 <patrick@kudos.be> - 0.5.0
|
|
||||||
- Added check_exadata_ib_status
|
|
||||||
* Fri Jul 07 2019 <patrick@kudos.be> - 0.4.0
|
|
||||||
- Added check_exadata_zfs_cluster
|
|
||||||
* Fri May 14 2019 <patrick@kudos.be> - 0.3.0
|
|
||||||
- Added include_exadata
|
|
||||||
- Added plugin check_exadata_cell_alerts
|
|
||||||
- Added plugin check_exadata_cell_celldisks
|
|
||||||
- Added plugin check_exadata_cell_flash
|
|
||||||
- Added plugin check_exadata_cell_griddisks
|
|
||||||
- Added plugin check_exadata_cell_luns
|
|
||||||
- Added plugin check_exadata_cell_megaraid
|
|
||||||
- Added plugin check_exadata_cell_physicaldisks
|
|
||||||
- Added plugin check_exadata_megaraid
|
|
||||||
* Fri Apr 12 2019 <patrick@kudos.be> - 0.2.0
|
|
||||||
- Added plugin check_exadata_zfs_pool_usage
|
|
||||||
* Tue Mar 26 2019 <patrick@kudos.be> - 0.1.0
|
|
||||||
- New git tree organization
|
|
||||||
* Mon Feb 18 2019 <patrick@kudos.be> - 0.0.1
|
|
||||||
- Initial build
|
|
@ -59,11 +59,9 @@ This is the OS/platform plugin package"
|
|||||||
file_permissions -u 0222 -o root -g sys
|
file_permissions -u 0222 -o root -g sys
|
||||||
|
|
||||||
directory ../../../opt/hc/lib/platform/hp-ux=/opt/hc/lib/platform/hp-ux
|
directory ../../../opt/hc/lib/platform/hp-ux=/opt/hc/lib/platform/hp-ux
|
||||||
file -m 755 check_hpux_autofs.sh
|
|
||||||
file -m 755 check_hpux_autopath.sh
|
file -m 755 check_hpux_autopath.sh
|
||||||
file -m 755 check_hpux_cdsf_cluster.sh
|
file -m 755 check_hpux_cdsf_cluster.sh
|
||||||
file -m 755 check_hpux_cron_status.sh
|
file -m 755 check_hpux_cron_status.sh
|
||||||
file -m 755 check_hpux_defunct_processes.sh
|
|
||||||
file -m 755 check_hpux_drd_status.sh
|
file -m 755 check_hpux_drd_status.sh
|
||||||
file -m 755 check_hpux_file_age.sh
|
file -m 755 check_hpux_file_age.sh
|
||||||
file -m 755 check_hpux_file_change.sh
|
file -m 755 check_hpux_file_change.sh
|
||||||
@ -73,7 +71,7 @@ This is the OS/platform plugin package"
|
|||||||
file -m 755 check_hpux_ignite_backup.sh
|
file -m 755 check_hpux_ignite_backup.sh
|
||||||
file -m 755 check_hpux_ioscan.sh
|
file -m 755 check_hpux_ioscan.sh
|
||||||
file -m 755 check_hpux_guid_status.sh
|
file -m 755 check_hpux_guid_status.sh
|
||||||
file -m 755 check_hpux_hpvm_vpar_status.sh
|
file -m 644 check_hpux_hpvm_vpar_status.sh
|
||||||
file -m 755 check_hpux_httpd_status.sh
|
file -m 755 check_hpux_httpd_status.sh
|
||||||
file -m 755 check_hpux_kernel_params.sh
|
file -m 755 check_hpux_kernel_params.sh
|
||||||
file -m 755 check_hpux_kernel_usage.sh
|
file -m 755 check_hpux_kernel_usage.sh
|
||||||
@ -85,10 +83,14 @@ This is the OS/platform plugin package"
|
|||||||
file -m 755 check_hpux_postfix_status.sh
|
file -m 755 check_hpux_postfix_status.sh
|
||||||
file -m 755 check_hpux_root_crontab.sh
|
file -m 755 check_hpux_root_crontab.sh
|
||||||
file -m 755 check_hpux_sfm_status.sh
|
file -m 755 check_hpux_sfm_status.sh
|
||||||
|
file -m 755 check_hpux_sg_package_status.sh
|
||||||
|
file -m 755 check_hpux_sg_package_config.sh
|
||||||
|
file -m 755 check_hpux_sg_cluster_status.sh
|
||||||
|
file -m 755 check_hpux_sg_cluster_config.sh
|
||||||
|
file -m 755 check_hpux_sg_qs_status.sh
|
||||||
file -m 755 check_hpux_sshd_status.sh
|
file -m 755 check_hpux_sshd_status.sh
|
||||||
file -m 755 check_hpux_syslog.sh
|
file -m 755 check_hpux_syslog.sh
|
||||||
file -m 755 check_hpux_syslogd_status.sh
|
file -m 755 check_hpux_syslogd_status.sh
|
||||||
file -m 755 check_hpux_uptime.sh
|
|
||||||
file -m 755 check_hpux_vg_minor_number.sh
|
file -m 755 check_hpux_vg_minor_number.sh
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -105,9 +107,6 @@ This is the OS/platform plugin package"
|
|||||||
file_permissions -u 0222 -o root -g sys
|
file_permissions -u 0222 -o root -g sys
|
||||||
|
|
||||||
directory ../../../etc/opt/hc/=/etc/opt/hc
|
directory ../../../etc/opt/hc/=/etc/opt/hc
|
||||||
file -m 644 check_hpux_autofs.conf.dist
|
|
||||||
file -m 644 check_hpux_cron_status.conf.dist
|
|
||||||
file -m 644 check_hpux_defunct_processes.conf.dist
|
|
||||||
file -m 644 check_hpux_drd_status.conf.dist
|
file -m 644 check_hpux_drd_status.conf.dist
|
||||||
file -m 644 check_hpux_file_age.conf.dist
|
file -m 644 check_hpux_file_age.conf.dist
|
||||||
file -m 644 check_hpux_file_change.conf.dist
|
file -m 644 check_hpux_file_change.conf.dist
|
||||||
@ -119,12 +118,15 @@ This is the OS/platform plugin package"
|
|||||||
file -m 644 check_hpux_kernel_params.conf.dist
|
file -m 644 check_hpux_kernel_params.conf.dist
|
||||||
file -m 644 check_hpux_kernel_usage.conf.dist
|
file -m 644 check_hpux_kernel_usage.conf.dist
|
||||||
file -m 644 check_hpux_ntp_status.conf.dist
|
file -m 644 check_hpux_ntp_status.conf.dist
|
||||||
file -m 644 check_hpux_ovpa_status.conf.dist
|
file -m 755 check_hpux_ovpa_status.conf.dist
|
||||||
file -m 644 check_hpux_patch_version.conf.dist
|
file -m 755 check_hpux_patch_version.conf.dist
|
||||||
file -m 644 check_hpux_root_crontab.conf.dist
|
file -m 644 check_hpux_root_crontab.conf.dist
|
||||||
file -m 644 check_hpux_sfm_status.conf.dist
|
file -m 644 check_hpux_sfm_status.conf.dist
|
||||||
|
file -m 644 check_hpux_sg_package_status.conf.dist
|
||||||
|
file -m 644 check_hpux_sg_package_config.conf.dist
|
||||||
|
file -m 644 check_hpux_sg_cluster_status.conf.dist
|
||||||
|
file -m 644 check_hpux_sg_cluster_config.conf.dist
|
||||||
file -m 644 check_hpux_syslog.conf.dist
|
file -m 644 check_hpux_syslog.conf.dist
|
||||||
file -m 644 check_hpux_uptime.conf.dist
|
|
||||||
end
|
end
|
||||||
|
|
||||||
fileset
|
fileset
|
||||||
|
@ -1,80 +0,0 @@
|
|||||||
# Depot definition:
|
|
||||||
depot
|
|
||||||
layout_version 1.0
|
|
||||||
|
|
||||||
# Vendor definition:
|
|
||||||
vendor
|
|
||||||
tag KUDOS
|
|
||||||
title "KUDOS BVBA - http://www.kudos.be"
|
|
||||||
end
|
|
||||||
|
|
||||||
# Bundle definitions:
|
|
||||||
bundle
|
|
||||||
tag HC-NOTIFY-SLACK
|
|
||||||
title "The Health Checker (HC) for UNIX (core SLACK plugin)"
|
|
||||||
os_name HP-UX
|
|
||||||
revision %BUILD_DATE%
|
|
||||||
architecture HP-UX_B.11_32/64
|
|
||||||
machine_type ia64*
|
|
||||||
vendor_tag KUDOS
|
|
||||||
contents HC-NOTIFY-SLACK-MAIN,r=,a=,v=
|
|
||||||
end
|
|
||||||
|
|
||||||
# Product definitions:
|
|
||||||
product
|
|
||||||
tag HC-NOTIFY-SLACK-MAIN
|
|
||||||
revision %BUILD_DATE%
|
|
||||||
category tools
|
|
||||||
category_title Tools
|
|
||||||
title "The Health Checker (HC) for UNIX (OS plugins)"
|
|
||||||
description "The Health Checker is collection of scripts (plugins)
|
|
||||||
designed to perform regular - but not intensive - health checks on
|
|
||||||
UNIX/Linux systems. It provides plugins for AIX, HP-UX and Linux as
|
|
||||||
well customer specific checks. Checks may include topics such file
|
|
||||||
system mounts, process checks, file consistency etc.
|
|
||||||
This is the core SLACK plugin package"
|
|
||||||
architecture S700/S800_HP-UX_10/HP-UX_11/IA64_HP-UX_11
|
|
||||||
machine_type 9000/7*|9000/8*|ia64*
|
|
||||||
os_name HP-UX
|
|
||||||
os_release ?.1?.*
|
|
||||||
os_version [A-Z]
|
|
||||||
directory /opt/hc
|
|
||||||
is_locatable false
|
|
||||||
is_patch false
|
|
||||||
|
|
||||||
postinstall scripts/hc_notify_slack.postinstall
|
|
||||||
postremove scripts/hc_notify_slack.postremove
|
|
||||||
|
|
||||||
# Fileset definitions:
|
|
||||||
fileset
|
|
||||||
tag core_plugins
|
|
||||||
title UX Health Checker (core SLACK plugins)
|
|
||||||
is_kernel false
|
|
||||||
is_locatable false
|
|
||||||
is_reboot false
|
|
||||||
is_sparse false
|
|
||||||
is_patch false
|
|
||||||
prerequisite HC-HPUX-MAIN
|
|
||||||
|
|
||||||
file_permissions -u 0222 -o root -g sys
|
|
||||||
|
|
||||||
directory ../../../opt/hc/lib/core=/opt/hc/lib/core
|
|
||||||
file -m 755 notify_slack.sh
|
|
||||||
end
|
|
||||||
|
|
||||||
fileset
|
|
||||||
tag config
|
|
||||||
title UX Health Checker (core SLACK plugins: configuration)
|
|
||||||
is_kernel false
|
|
||||||
is_locatable false
|
|
||||||
is_reboot false
|
|
||||||
is_sparse false
|
|
||||||
is_patch false
|
|
||||||
prerequisite HC-NOTIFY-SLACK-MAIN.core_plugins
|
|
||||||
|
|
||||||
file_permissions -u 0222 -o root -g sys
|
|
||||||
|
|
||||||
directory ../../../etc/opt/hc/core/providers=/etc/opt/hc/core/providers
|
|
||||||
file -m 644 notify_slack.conf.dist
|
|
||||||
end
|
|
||||||
end
|
|
@ -1,51 +0,0 @@
|
|||||||
#!/usr/bin/env ksh
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) post-install script for HC-NOTIFY-SLACK SD package
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) Copyright (C) 2022 by KUDOS BVBA (info@kudos.be). All rights reserved.
|
|
||||||
#
|
|
||||||
# This program is a free software; you can redistribute it and/or modify
|
|
||||||
# it under the same terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
||||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of ETC dir
|
|
||||||
HC_ETC_DIR="/etc/opt/hc"
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
|
|
||||||
print "INFO: starting post-install script ..."
|
|
||||||
|
|
||||||
# copy plugin config file from dist (if needed)
|
|
||||||
if [[ ! -f ${HC_ETC_DIR}/core/providers/notify_slack.conf ]]
|
|
||||||
then
|
|
||||||
cp -p ${HC_ETC_DIR}/core/providers/notify_slack.conf.dist ${HC_ETC_DIR}/core/providers/notify_slack.conf >/dev/null || \
|
|
||||||
{
|
|
||||||
print -u2 "ERROR: could not copy plugin config file in ${HC_ETC_DIR}/core/providers"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks || print -u2 "WARN: updating symlinks failed"
|
|
||||||
else
|
|
||||||
print -u2 "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
|
||||||
fi
|
|
||||||
|
|
||||||
print "INFO: finished post-install script"
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# END of script
|
|
||||||
#******************************************************************************
|
|
@ -1,48 +0,0 @@
|
|||||||
#!/usr/bin/env ksh
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) post-remove script for HC-NOTIFY-SLACK SD package
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) Copyright (C) 2022 by KUDOS BVBA (info@kudos.be). All rights reserved.
|
|
||||||
#
|
|
||||||
# This program is a free software; you can redistribute it and/or modify
|
|
||||||
# it under the same terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
||||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of the HC configuration files
|
|
||||||
HC_ETC_DIR="/etc/opt/hc"
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
|
|
||||||
print "INFO: starting post-remove script ..."
|
|
||||||
|
|
||||||
# remove plugin configuration file (.dist only)
|
|
||||||
if [[ -d ${HC_ETC_DIR}/core/providers ]]
|
|
||||||
then
|
|
||||||
rm -f ${HC_ETC_DIR}/core/providers/notify_slack.conf.dist >/dev/null
|
|
||||||
(( $? == 0 )) || echo "WARN: could not remove plugin config file in directory ${HC_ETC_DIR}/core/providers"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks || print -u2 "WARN: updating symlinks failed"
|
|
||||||
else
|
|
||||||
print -u2 "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
|
||||||
fi
|
|
||||||
|
|
||||||
print "INFO: finished post-remove script"
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# END of script
|
|
||||||
#******************************************************************************
|
|
@ -19,13 +19,9 @@ package() {
|
|||||||
install -d -m 755 ${pkgdir}/opt/hc/lib
|
install -d -m 755 ${pkgdir}/opt/hc/lib
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib/platform
|
install -d -m 755 ${pkgdir}/opt/hc/lib/platform
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib/platform/linux
|
install -d -m 755 ${pkgdir}/opt/hc/lib/platform/linux
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_autofs.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_autofs.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_burp_backup.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_burp_backup.sh
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_burp_backup.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_burp_backup.sh
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_burp_status.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_burp_status.sh
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_burp_status.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_burp_status.sh
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_dovecot_status.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_dovecot_status.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_es_status.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_es_status.sh
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_es_status.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_es_status.sh
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_fail2ban_status.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_fail2ban_status.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_fetchmail_status.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_fetchmail_status.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_file_age.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_file_age.sh
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_file_age.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_file_age.sh
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_file_change.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_file_change.sh
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_file_change.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_file_change.sh
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_fs_mounts.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_fs_mounts.sh
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_fs_mounts.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_fs_mounts.sh
|
||||||
@ -45,15 +41,16 @@ package() {
|
|||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_hpssacli.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_hpssacli.sh
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_hpssacli.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_hpssacli.sh
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_process_limits.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_process_limits.sh
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_process_limits.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_process_limits.sh
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_root_crontab.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_root_crontab.sh
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_root_crontab.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_root_crontab.sh
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_uptime.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_uptime.sh
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_sg_cluster_config.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_sg_cluster_config.sh
|
||||||
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_sg_cluster_status.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_sg_cluster_status.sh
|
||||||
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_sg_package_config.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_sg_package_config.sh
|
||||||
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_sg_package_status.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_sg_package_status.sh
|
||||||
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_sg_qs_status.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_sg_qs_status.sh
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_vz_ct_counters.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_vz_ct_counters.sh
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_vz_ct_counters.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_vz_ct_counters.sh
|
||||||
install -D -m 755 opt/hc/lib/platform/linux/check_linux_vz_ct_status.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_vz_ct_status.sh
|
install -D -m 755 opt/hc/lib/platform/linux/check_linux_vz_ct_status.sh ${pkgdir}/opt/hc/lib/platform/linux/check_linux_vz_ct_status.sh
|
||||||
install -d -m 755 ${pkgdir}/etc/opt/hc
|
install -d -m 755 ${pkgdir}/etc/opt/hc
|
||||||
install -D -m 644 etc/opt/hc/check_linux_autofs.conf.dist ${pkgdir}/etc/opt/hc/check_linux_autofs.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_linux_burp_backup.conf.dist ${pkgdir}/etc/opt/hc/check_linux_burp_backup.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_burp_backup.conf.dist ${pkgdir}/etc/opt/hc/check_linux_burp_backup.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_es_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_es_status.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_es_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_es_status.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_fail2ban_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_fail2ban_status.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_linux_fetchmail_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_fetchmail_status.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_linux_file_age.conf.dist ${pkgdir}/etc/opt/hc/check_linux_file_age.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_file_age.conf.dist ${pkgdir}/etc/opt/hc/check_linux_file_age.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_file_change.conf.dist ${pkgdir}/etc/opt/hc/check_linux_file_change.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_file_change.conf.dist ${pkgdir}/etc/opt/hc/check_linux_file_change.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_fs_usage.conf.dist ${pkgdir}/etc/opt/hc/check_linux_fs_usage.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_fs_usage.conf.dist ${pkgdir}/etc/opt/hc/check_linux_fs_usage.conf.dist
|
||||||
@ -61,12 +58,14 @@ package() {
|
|||||||
install -D -m 644 etc/opt/hc/check_linux_hpacucli.conf.dist ${pkgdir}/etc/opt/hc/check_linux_hpacucli.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_hpacucli.conf.dist ${pkgdir}/etc/opt/hc/check_linux_hpacucli.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_hplog.conf.dist ${pkgdir}/etc/opt/hc/check_linux_hplog.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_hplog.conf.dist ${pkgdir}/etc/opt/hc/check_linux_hplog.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_hpssacli.conf.dist ${pkgdir}/etc/opt/hc/check_linux_hpssacli.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_hpssacli.conf.dist ${pkgdir}/etc/opt/hc/check_linux_hpssacli.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_httpd_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_httpd_status.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_linux_mysqld_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_mysqld_status.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_mysqld_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_mysqld_status.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_ntp_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_ntp_status.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_ntp_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_ntp_status.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_process_limits.conf.dist ${pkgdir}/etc/opt/hc/check_linux_process_limits.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_process_limits.conf.dist ${pkgdir}/etc/opt/hc/check_linux_process_limits.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_root_crontab.conf.dist ${pkgdir}/etc/opt/hc/check_linux_root_crontab.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_root_crontab.conf.dist ${pkgdir}/etc/opt/hc/check_linux_root_crontab.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_uptime.conf.dist ${pkgdir}/etc/opt/hc/check_linux_uptime.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_sg_cluster_config.conf.dist ${pkgdir}/etc/opt/hc/check_linux_sg_cluster_config.conf.dist
|
||||||
|
install -D -m 644 etc/opt/hc/check_linux_sg_cluster_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_sg_cluster_status.conf.dist
|
||||||
|
install -D -m 644 etc/opt/hc/check_linux_sg_package_config.conf.dist ${pkgdir}/etc/opt/hc/check_linux_sg_package_config.conf.dist
|
||||||
|
install -D -m 644 etc/opt/hc/check_linux_sg_package_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_sg_package_status.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_vz_ct_counters.conf.dist ${pkgdir}/etc/opt/hc/check_linux_vz_ct_counters.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_vz_ct_counters.conf.dist ${pkgdir}/etc/opt/hc/check_linux_vz_ct_counters.conf.dist
|
||||||
install -D -m 644 etc/opt/hc/check_linux_vz_ct_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_vz_ct_status.conf.dist
|
install -D -m 644 etc/opt/hc/check_linux_vz_ct_status.conf.dist ${pkgdir}/etc/opt/hc/check_linux_vz_ct_status.conf.dist
|
||||||
install -d -m 755 ${pkgdir}/etc/opt/hc/core
|
install -d -m 755 ${pkgdir}/etc/opt/hc/core
|
||||||
|
@ -40,34 +40,6 @@ post_install() {
|
|||||||
else
|
else
|
||||||
echo "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
echo "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
||||||
fi
|
fi
|
||||||
# set SELinux contexts for logrotate
|
|
||||||
SESTATUS_BIN=$(command -v sestatus 2>/dev/null)
|
|
||||||
if [[ -n "${SESTATUS_BIN}" ]]
|
|
||||||
then
|
|
||||||
IS_ENFORCING=$(${SESTATUS_BIN} | grep -c "Current mode.*enforcing" 2>/dev/null)
|
|
||||||
if (( IS_ENFORCING > 0 ))
|
|
||||||
then
|
|
||||||
SEMANAGE_BIN=$(command -v semanage 2>/dev/null)
|
|
||||||
if [[ -n "${SEMANAGE_BIN}" ]]
|
|
||||||
then
|
|
||||||
${SEMANAGE_BIN} fcontext -a -t var_log_t "${HC_VAR_DIR}(/check_health\.sh\.log.*)?"
|
|
||||||
echo "INFO: SELinux fcontexts configured for log rotation"
|
|
||||||
if [[ -d ${HC_VAR_DIR} ]]
|
|
||||||
then
|
|
||||||
RESTORECON_BIN=$(command -v restorecon 2>/dev/null)
|
|
||||||
if [[ -n "${RESTORECON_BIN}" ]]
|
|
||||||
then
|
|
||||||
${RESTORECON_BIN} -Frv ${HC_VAR_DIR}
|
|
||||||
echo "INFO: SELinux fcontexts set on ${HC_VAR_DIR} for log rotation"
|
|
||||||
else
|
|
||||||
echo "WARN: SELinux is set to 'enforcing' but could not found 'restorecon' to set fcontexts for log rotation"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "WARN: SELinux is set to 'enforcing' but could not found 'semanage' to set fcontexts for log rotation"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
echo "INFO: finished post-install script"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
# -- post-install --
|
|
||||||
post_install() {
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-install script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
|
||||||
}
|
|
||||||
|
|
||||||
# -- post-remove --
|
|
||||||
post_remove() {
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-uninstall script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-uninstall script"
|
|
||||||
}
|
|
@ -1,26 +0,0 @@
|
|||||||
# Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
|
||||||
|
|
||||||
_pkgname="check_health"
|
|
||||||
pkgname="hc-notify-slack"
|
|
||||||
pkgver="%BUILD_DATE%"
|
|
||||||
pkgrel=1
|
|
||||||
pkgdesc="The KUDOS Health Checker (HC) for UNIX (Slack notify core plugin)"
|
|
||||||
arch=("any")
|
|
||||||
url="https://github.com/patvdv/${_pkgname}"
|
|
||||||
license=('GPL3')
|
|
||||||
makedepends=('git')
|
|
||||||
depends=('hc-linux')
|
|
||||||
source=("${_pkgname}::git+${url}.git#branch=master")
|
|
||||||
install=".install"
|
|
||||||
sha256sums=('SKIP')
|
|
||||||
|
|
||||||
package() {
|
|
||||||
cd "${srcdir}/${_pkgname}"
|
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib
|
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib/core
|
|
||||||
install -D -m 755 opt/hc/lib/core/notify_slack.sh ${pkgdir}/opt/hc/lib/core/notify_slack.sh
|
|
||||||
install -d -m 755 ${pkgdir}/etc/opt/hc
|
|
||||||
install -d -m 755 ${pkgdir}/etc/opt/hc/core
|
|
||||||
install -d -m 755 ${pkgdir}/etc/opt/hc/core/providers
|
|
||||||
install -D -m 644 etc/opt/hc/core/providers/notify_slack.conf.dist ${pkgdir}/etc/opt/hc/core/providers/notify_slack.conf.dist
|
|
||||||
}
|
|
@ -4,7 +4,7 @@ Architecture: all
|
|||||||
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
||||||
Essential: no
|
Essential: no
|
||||||
Installed-Size: 50
|
Installed-Size: 50
|
||||||
Pre-Depends: hc-linux
|
Depends: hc-linux
|
||||||
Section: tools
|
Section: tools
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Description: The KUDOS Health Checker (HC) for UNIX (CSV display core plugin).
|
Description: The KUDOS Health Checker (HC) for UNIX (CSV display core plugin).
|
||||||
|
@ -4,7 +4,7 @@ Architecture: all
|
|||||||
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
||||||
Essential: no
|
Essential: no
|
||||||
Installed-Size: 50
|
Installed-Size: 50
|
||||||
Pre-Depends: hc-linux
|
Depends: hc-linux
|
||||||
Section: tools
|
Section: tools
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Description: The KUDOS Health Checker (HC) for UNIX (init display core plugin).
|
Description: The KUDOS Health Checker (HC) for UNIX (init display core plugin).
|
||||||
|
@ -4,7 +4,7 @@ Architecture: all
|
|||||||
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
||||||
Essential: no
|
Essential: no
|
||||||
Installed-Size: 50
|
Installed-Size: 50
|
||||||
Pre-Depends: hc-linux
|
Depends: hc-linux
|
||||||
Section: tools
|
Section: tools
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Description: The KUDOS Health Checker (HC) for UNIX (JSON display core plugin).
|
Description: The KUDOS Health Checker (HC) for UNIX (JSON display core plugin).
|
||||||
|
@ -4,7 +4,7 @@ Architecture: all
|
|||||||
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
||||||
Essential: no
|
Essential: no
|
||||||
Installed-Size: 50
|
Installed-Size: 50
|
||||||
Pre-Depends: hc-linux
|
Depends: hc-linux
|
||||||
Section: tools
|
Section: tools
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Description: The KUDOS Health Checker (HC) for UNIX (terse display core plugin).
|
Description: The KUDOS Health Checker (HC) for UNIX (terse display core plugin).
|
||||||
|
@ -4,7 +4,7 @@ Architecture: all
|
|||||||
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
||||||
Essential: no
|
Essential: no
|
||||||
Installed-Size: 50
|
Installed-Size: 50
|
||||||
Pre-Depends: hc-linux
|
Depends: hc-linux
|
||||||
Section: tools
|
Section: tools
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Description: The KUDOS Health Checker (HC) for UNIX (Zenoss display core plugin).
|
Description: The KUDOS Health Checker (HC) for UNIX (Zenoss display core plugin).
|
||||||
|
@ -4,7 +4,7 @@ Architecture: all
|
|||||||
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
||||||
Essential: no
|
Essential: no
|
||||||
Installed-Size: 300
|
Installed-Size: 300
|
||||||
Pre-Depends: hc-linux
|
Depends: hc-linux
|
||||||
Section: tools
|
Section: tools
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Description: The KUDOS Health Checker (HC) for UNIX (platform plugins).
|
Description: The KUDOS Health Checker (HC) for UNIX (platform plugins).
|
||||||
|
@ -4,7 +4,7 @@ Architecture: all
|
|||||||
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
||||||
Essential: no
|
Essential: no
|
||||||
Installed-Size: 300
|
Installed-Size: 300
|
||||||
Depends: ksh, aptitude
|
Depends: ksh
|
||||||
Section: tools
|
Section: tools
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Description: The KUDOS Health Checker (HC) for UNIX.
|
Description: The KUDOS Health Checker (HC) for UNIX.
|
||||||
|
@ -16,35 +16,25 @@ chown -R root:root /opt/hc /etc/opt/hc 2>/dev/null
|
|||||||
chown root:root /etc/logrotate.d/check_health 2>/dev/null
|
chown root:root /etc/logrotate.d/check_health 2>/dev/null
|
||||||
chmod 644 /etc/logrotate.d/check_health 2>/dev/null
|
chmod 644 /etc/logrotate.d/check_health 2>/dev/null
|
||||||
# copy configuration files
|
# copy configuration files
|
||||||
if [[ -f ${HC_ETC_DIR}/core/check_health.conf.dist ]]
|
if [[ ! -f ${HC_ETC_DIR}/core/check_health.conf ]]
|
||||||
then
|
then
|
||||||
if [[ ! -f ${HC_ETC_DIR}/core/check_health.conf ]]
|
# copy main configuration file
|
||||||
then
|
cp -p ${HC_ETC_DIR}/core/check_health.conf.dist ${HC_ETC_DIR}/core/check_health.conf >/dev/null
|
||||||
# copy main configuration file
|
(( $? == 0 )) || \
|
||||||
cp -p ${HC_ETC_DIR}/core/check_health.conf.dist ${HC_ETC_DIR}/core/check_health.conf >/dev/null
|
{
|
||||||
(( $? == 0 )) || \
|
echo "ERROR: could not copy main config file in ${HC_ETC_DIR}/core"
|
||||||
{
|
exit 1
|
||||||
echo "ERROR: could not copy main config file in ${HC_ETC_DIR}/core"
|
}
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "WARN: could not check_health config .dist file in ${HC_ETC_DIR}/core"
|
|
||||||
fi
|
fi
|
||||||
if [[ -f ${HC_ETC_DIR}/check_host.conf.dist ]]
|
if [[ ! -f ${HC_ETC_DIR}/check_host.conf ]]
|
||||||
then
|
then
|
||||||
if [[ ! -f ${HC_ETC_DIR}/check_host.conf ]]
|
# copy host check configuration file
|
||||||
then
|
cp -p ${HC_ETC_DIR}/check_host.conf.dist ${HC_ETC_DIR}/check_host.conf >/dev/null
|
||||||
# copy host check configuration file
|
(( $? == 0 )) || \
|
||||||
cp -p ${HC_ETC_DIR}/check_host.conf.dist ${HC_ETC_DIR}/check_host.conf >/dev/null
|
{
|
||||||
(( $? == 0 )) || \
|
echo "ERROR: could not copy host check config file in ${HC_ETC_DIR}"
|
||||||
{
|
exit 1
|
||||||
echo "ERROR: could not copy host check config file in ${HC_ETC_DIR}"
|
}
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "WARN: could not find check_host config .dist file in ${HC_ETC_DIR}"
|
|
||||||
fi
|
fi
|
||||||
# refresh symbolic FPATH links for core includes & plugins
|
# refresh symbolic FPATH links for core includes & plugins
|
||||||
if [[ -x ${HC_BIN} ]]
|
if [[ -x ${HC_BIN} ]]
|
||||||
@ -53,32 +43,4 @@ then
|
|||||||
else
|
else
|
||||||
echo "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
echo "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
||||||
fi
|
fi
|
||||||
# set SELinux contexts for logrotate
|
|
||||||
SESTATUS_BIN=$(command -v sestatus 2>/dev/null)
|
|
||||||
if [[ -n "${SESTATUS_BIN}" ]]
|
|
||||||
then
|
|
||||||
IS_ENFORCING=$(${SESTATUS_BIN} | grep -c "Current mode.*enforcing" 2>/dev/null)
|
|
||||||
if (( IS_ENFORCING > 0 ))
|
|
||||||
then
|
|
||||||
SEMANAGE_BIN=$(command -v semanage 2>/dev/null)
|
|
||||||
if [[ -n "${SEMANAGE_BIN}" ]]
|
|
||||||
then
|
|
||||||
${SEMANAGE_BIN} fcontext -a -t var_log_t "${HC_VAR_DIR}(/check_health\.sh\.log.*)?"
|
|
||||||
echo "INFO: SELinux fcontexts configured for log rotation"
|
|
||||||
if [[ -d ${HC_VAR_DIR} ]]
|
|
||||||
then
|
|
||||||
RESTORECON_BIN=$(command -v restorecon 2>/dev/null)
|
|
||||||
if [[ -n "${RESTORECON_BIN}" ]]
|
|
||||||
then
|
|
||||||
${RESTORECON_BIN} -Frv ${HC_VAR_DIR}
|
|
||||||
echo "INFO: SELinux fcontexts set on ${HC_VAR_DIR} for log rotation"
|
|
||||||
else
|
|
||||||
echo "WARN: SELinux is set to 'enforcing' but could not found 'restorecon' to set fcontexts for log rotation"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "WARN: SELinux is set to 'enforcing' but could not found 'semanage' to set fcontexts for log rotation"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
echo "INFO: finished post-install script"
|
||||||
|
@ -10,9 +10,8 @@ HC_VAR_DIR="/var/opt/hc"
|
|||||||
echo "INFO: starting post-uninstall script ..."
|
echo "INFO: starting post-uninstall script ..."
|
||||||
if [[ -d ${HC_DIR} ]]
|
if [[ -d ${HC_DIR} ]]
|
||||||
then
|
then
|
||||||
# remove all symlinks
|
rm -rf ${HC_DIR} 2>/dev/null
|
||||||
find ${HC_DIR} -type l -exec rm -f {} \; 2>/dev/null
|
(( $? == 0 )) || echo "WARN: failed to remove ${HC_DIR}"
|
||||||
(( $? == 0 )) || echo "WARN: failed to remove symlinks in ${HC_DIR}"
|
|
||||||
fi
|
fi
|
||||||
if [[ -d ${HC_ETC_DIR} ]]
|
if [[ -d ${HC_ETC_DIR} ]]
|
||||||
then
|
then
|
||||||
|
@ -4,7 +4,7 @@ Architecture: all
|
|||||||
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
||||||
Essential: no
|
Essential: no
|
||||||
Installed-Size: 50
|
Installed-Size: 50
|
||||||
Pre-Depends: hc-linux
|
Depends: hc-linux
|
||||||
Section: tools
|
Section: tools
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Description: The KUDOS Health Checker (HC) for UNIX (EIF notify core plugin).
|
Description: The KUDOS Health Checker (HC) for UNIX (EIF notify core plugin).
|
||||||
|
@ -10,19 +10,14 @@ echo "INFO: starting post-install script ..."
|
|||||||
# debian: reset ownerships
|
# debian: reset ownerships
|
||||||
chown -R root:root /opt/hc /etc/opt/hc 2>/dev/null
|
chown -R root:root /opt/hc /etc/opt/hc 2>/dev/null
|
||||||
# copy plugin configuration file
|
# copy plugin configuration file
|
||||||
if [[ -f ${HC_ETC_DIR}/core/providers/notify_eif.conf.dist ]]
|
if [[ ! -f ${HC_ETC_DIR}/core/providers/notify_eif.conf ]]
|
||||||
then
|
then
|
||||||
if [[ ! -f ${HC_ETC_DIR}/core/providers/notify_eif.conf ]]
|
cp -p ${HC_ETC_DIR}/core/providers/notify_eif.conf.dist ${HC_ETC_DIR}/core/providers/notify_eif.conf >/dev/null
|
||||||
then
|
(( $? == 0 )) || \
|
||||||
cp -p ${HC_ETC_DIR}/core/providers/notify_eif.conf.dist ${HC_ETC_DIR}/core/providers/notify_eif.conf >/dev/null
|
{
|
||||||
(( $? == 0 )) || \
|
echo "ERROR: could not copy plugin config file in ${HC_ETC_DIR}/core/providers"
|
||||||
{
|
exit 1
|
||||||
echo "ERROR: could not copy plugin config file in ${HC_ETC_DIR}/core/providers"
|
}
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "WARN: could not find plugin config .dist file in ${HC_ETC_DIR}/core/providers"
|
|
||||||
fi
|
fi
|
||||||
# refresh symbolic FPATH links
|
# refresh symbolic FPATH links
|
||||||
if [[ -x ${HC_BIN} ]]
|
if [[ -x ${HC_BIN} ]]
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
Package: hc-notify-slack
|
|
||||||
Version: %BUILD_DATE%
|
|
||||||
Architecture: all
|
|
||||||
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
|
||||||
Essential: no
|
|
||||||
Installed-Size: 50
|
|
||||||
Pre-Depends: hc-linux
|
|
||||||
Section: tools
|
|
||||||
Priority: extra
|
|
||||||
Description: The KUDOS Health Checker (HC) for UNIX (Slack notify core plugin).
|
|
@ -1,33 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of the HC configuration files
|
|
||||||
HC_ETC_DIR="/etc/opt/hc"
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-install script ..."
|
|
||||||
# debian: reset ownerships
|
|
||||||
chown -R root:root /opt/hc /etc/opt/hc 2>/dev/null
|
|
||||||
# copy plugin configuration file
|
|
||||||
if [[ -f ${HC_ETC_DIR}/core/providers/notify_slack.conf.dist ]]
|
|
||||||
then
|
|
||||||
if [[ ! -f ${HC_ETC_DIR}/core/providers/notify_slack.conf ]]
|
|
||||||
then
|
|
||||||
cp -p ${HC_ETC_DIR}/core/providers/notify_slack.conf.dist ${HC_ETC_DIR}/core/providers/notify_slack.conf >/dev/null
|
|
||||||
(( $? == 0 )) || \
|
|
||||||
{
|
|
||||||
echo "ERROR: could not copy plugin config file in ${HC_ETC_DIR}/core/providers"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "WARN: could not find plugin config .dist file in ${HC_ETC_DIR}/core/providers"
|
|
||||||
fi
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
|
@ -1,32 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of the HC configuration files
|
|
||||||
HC_ETC_DIR="/etc/opt/hc"
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
# update or uninstall?
|
|
||||||
if (( $1 == 0 ))
|
|
||||||
then
|
|
||||||
echo "INFO: starting post-uninstall script ..."
|
|
||||||
# copy plugin configuration file (.dist only)
|
|
||||||
if [[ -d ${HC_ETC_DIR}/core/providers ]]
|
|
||||||
then
|
|
||||||
rm -f ${HC_ETC_DIR}/core/providers/notify_slack.conf.dist 2>/dev/null
|
|
||||||
(( $? == 0 )) || \
|
|
||||||
{
|
|
||||||
echo "ERROR: could not remove plugin config file in ${HC_ETC_DIR}/core/providers"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "INFO: starting post-uninstall script (RPM upgrade)"
|
|
||||||
fi
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-uninstall script"
|
|
@ -4,7 +4,7 @@ Architecture: all
|
|||||||
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
||||||
Essential: no
|
Essential: no
|
||||||
Installed-Size: 50
|
Installed-Size: 50
|
||||||
Pre-Depends: hc-linux
|
Depends: hc-linux
|
||||||
Section: tools
|
Section: tools
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Description: The KUDOS Health Checker (HC) for UNIX (SMS notify core plugin).
|
Description: The KUDOS Health Checker (HC) for UNIX (SMS notify core plugin).
|
||||||
|
@ -10,19 +10,14 @@ echo "INFO: starting post-install script ..."
|
|||||||
# debian: reset ownerships
|
# debian: reset ownerships
|
||||||
chown -R root:root /opt/hc /etc/opt/hc 2>/dev/null
|
chown -R root:root /opt/hc /etc/opt/hc 2>/dev/null
|
||||||
# copy plugin configuration file
|
# copy plugin configuration file
|
||||||
if [[ -f ${HC_ETC_DIR}/core/providers/notify_sms.conf.dist ]]
|
if [[ ! -f ${HC_ETC_DIR}/core/providers/notify_sms.conf ]]
|
||||||
then
|
then
|
||||||
if [[ ! -f ${HC_ETC_DIR}/core/providers/notify_sms.conf ]]
|
cp -p ${HC_ETC_DIR}/core/providers/notify_sms.conf.dist ${HC_ETC_DIR}/core/providers/notify_sms.conf >/dev/null
|
||||||
then
|
(( $? == 0 )) || \
|
||||||
cp -p ${HC_ETC_DIR}/core/providers/notify_sms.conf.dist ${HC_ETC_DIR}/core/providers/notify_sms.conf >/dev/null
|
{
|
||||||
(( $? == 0 )) || \
|
echo "ERROR: could not copy plugin config file in ${HC_ETC_DIR}/core/providers"
|
||||||
{
|
exit 1
|
||||||
echo "ERROR: could not copy plugin config file in ${HC_ETC_DIR}/core/providers"
|
}
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "WARN: could not find plugin config .dist file in ${HC_ETC_DIR}/core/providers"
|
|
||||||
fi
|
fi
|
||||||
# refresh symbolic FPATH links
|
# refresh symbolic FPATH links
|
||||||
if [[ -x ${HC_BIN} ]]
|
if [[ -x ${HC_BIN} ]]
|
||||||
|
@ -27,13 +27,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib
|
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/platform
|
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/platform
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/platform/linux
|
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/platform/linux
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_autofs.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_autofs.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_burp_backup.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_burp_backup.sh
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_burp_backup.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_burp_backup.sh
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_burp_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_burp_status.sh
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_burp_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_burp_status.sh
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_dovecot_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_dovecot_status.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_es_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_es_status.sh
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_es_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_es_status.sh
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_fail2ban_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_fail2ban_status.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_fetchmail_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_fetchmail_status.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_file_age.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_file_age.sh
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_file_age.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_file_age.sh
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_file_change.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_file_change.sh
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_file_change.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_file_change.sh
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_fs_mounts.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_fs_mounts.sh
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_fs_mounts.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_fs_mounts.sh
|
||||||
@ -53,15 +49,16 @@ cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_hplog.sh $RPM_BUILD_ROOT/opt
|
|||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_hpssacli.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_hpssacli.sh
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_hpssacli.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_hpssacli.sh
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_process_limits.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_process_limits.sh
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_process_limits.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_process_limits.sh
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_root_crontab.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_root_crontab.sh
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_root_crontab.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_root_crontab.sh
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_uptime.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_uptime.sh
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_sg_cluster_config.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_sg_cluster_config.sh
|
||||||
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_sg_cluster_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_sg_cluster_status.sh
|
||||||
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_sg_package_config.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_sg_package_config.sh
|
||||||
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_sg_package_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_sg_package_status.sh
|
||||||
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_sg_qs_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_sg_qs_status.sh
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_vz_ct_counters.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_vz_ct_counters.sh
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_vz_ct_counters.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_vz_ct_counters.sh
|
||||||
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_vz_ct_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_vz_ct_status.sh
|
cp ../SOURCES/opt/hc/lib/platform/linux/check_linux_vz_ct_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/linux/check_linux_vz_ct_status.sh
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc
|
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_autofs.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_autofs.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_burp_backup.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_burp_backup.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_burp_backup.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_burp_backup.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_es_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_es_status.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_es_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_es_status.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_fail2ban_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_fail2ban_status.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_fetchmail_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_fetchmail_status.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_file_age.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_file_age.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_file_age.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_file_age.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_file_change.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_file_change.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_file_change.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_file_change.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_fs_usage.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_fs_usage.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_fs_usage.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_fs_usage.conf.dist
|
||||||
@ -69,12 +66,14 @@ cp ../SOURCES/etc/opt/hc/check_linux_hpasmcli.conf.dist $RPM_BUILD_ROOT/etc/opt/
|
|||||||
cp ../SOURCES/etc/opt/hc/check_linux_hpacucli.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_hpacucli.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_hpacucli.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_hpacucli.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_hplog.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_hplog.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_hplog.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_hplog.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_hpssacli.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_hpssacli.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_hpssacli.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_hpssacli.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_httpd_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_httpd_status.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_mysqld_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_mysqld_status.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_mysqld_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_mysqld_status.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_ntp_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_ntp_status.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_ntp_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_ntp_status.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_process_limits.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_process_limits.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_process_limits.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_process_limits.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_root_crontab.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_root_crontab.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_root_crontab.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_root_crontab.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_uptime.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_uptime.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_sg_cluster_config.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_sg_cluster_config.conf.dist
|
||||||
|
cp ../SOURCES/etc/opt/hc/check_linux_sg_cluster_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_sg_cluster_status.conf.dist
|
||||||
|
cp ../SOURCES/etc/opt/hc/check_linux_sg_package_config.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_sg_package_config.conf.dist
|
||||||
|
cp ../SOURCES/etc/opt/hc/check_linux_sg_package_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_sg_package_status.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_vz_ct_counters.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_vz_ct_counters.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_vz_ct_counters.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_vz_ct_counters.conf.dist
|
||||||
cp ../SOURCES/etc/opt/hc/check_linux_vz_ct_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_vz_ct_status.conf.dist
|
cp ../SOURCES/etc/opt/hc/check_linux_vz_ct_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_linux_vz_ct_status.conf.dist
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc/core
|
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc/core
|
||||||
@ -117,13 +116,9 @@ echo "INFO: finished post-uninstall script"
|
|||||||
%dir /opt/hc/lib
|
%dir /opt/hc/lib
|
||||||
%dir /opt/hc/lib/platform
|
%dir /opt/hc/lib/platform
|
||||||
%dir /opt/hc/lib/platform/linux
|
%dir /opt/hc/lib/platform/linux
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_autofs.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_burp_backup.sh
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_burp_backup.sh
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_burp_status.sh
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_burp_status.sh
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_dovecot_status.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_es_status.sh
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_es_status.sh
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_fail2ban_status.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_fetchmail_status.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_file_age.sh
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_file_age.sh
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_file_change.sh
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_file_change.sh
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_fs_mounts.sh
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_fs_mounts.sh
|
||||||
@ -143,15 +138,16 @@ echo "INFO: finished post-uninstall script"
|
|||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_hpssacli.sh
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_hpssacli.sh
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_process_limits.sh
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_process_limits.sh
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_root_crontab.sh
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_root_crontab.sh
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_uptime.sh
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_sg_cluster_config.sh
|
||||||
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_sg_cluster_status.sh
|
||||||
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_sg_package_config.sh
|
||||||
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_sg_package_status.sh
|
||||||
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_sg_qs_status.sh
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_vz_ct_counters.sh
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_vz_ct_counters.sh
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_vz_ct_status.sh
|
%attr(755, root, root) /opt/hc/lib/platform/linux/check_linux_vz_ct_status.sh
|
||||||
%dir /etc/opt/hc
|
%dir /etc/opt/hc
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_autofs.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_burp_backup.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_burp_backup.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_es_status.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_es_status.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_fail2ban_status.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_fetchmail_status.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_file_age.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_file_age.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_file_change.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_file_change.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_fs_usage.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_fs_usage.conf.dist
|
||||||
@ -159,12 +155,14 @@ echo "INFO: finished post-uninstall script"
|
|||||||
%attr(644, root, root) /etc/opt/hc/check_linux_hpacucli.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_hpacucli.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_hplog.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_hplog.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_hpssacli.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_hpssacli.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_httpd_status.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_mysqld_status.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_mysqld_status.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_ntp_status.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_ntp_status.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_process_limits.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_process_limits.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_root_crontab.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_root_crontab.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_uptime.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_sg_cluster_config.conf.dist
|
||||||
|
%attr(644, root, root) /etc/opt/hc/check_linux_sg_cluster_status.conf.dist
|
||||||
|
%attr(644, root, root) /etc/opt/hc/check_linux_sg_package_config.conf.dist
|
||||||
|
%attr(644, root, root) /etc/opt/hc/check_linux_sg_package_status.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_vz_ct_counters.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_vz_ct_counters.conf.dist
|
||||||
%attr(644, root, root) /etc/opt/hc/check_linux_vz_ct_status.conf.dist
|
%attr(644, root, root) /etc/opt/hc/check_linux_vz_ct_status.conf.dist
|
||||||
%dir /etc/opt/hc/core
|
%dir /etc/opt/hc/core
|
||||||
@ -173,19 +171,6 @@ echo "INFO: finished post-uninstall script"
|
|||||||
%attr(644, root, root) /etc/opt/hc/core/templates/mail_body.tpl-check_linux_root_crontab
|
%attr(644, root, root) /etc/opt/hc/core/templates/mail_body.tpl-check_linux_root_crontab
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Sat Dec 26 2020 <patrick@kudos.be> - 0.3.5
|
|
||||||
- Added check_linux_fetchmail_status plugin
|
|
||||||
- Added check_linux_dovecot_status plugin
|
|
||||||
* Mon Dec 21 2020 <patrick@kudos.be> - 0.3.4
|
|
||||||
- Added check_linux_uptime plugin
|
|
||||||
* Fri Oct 18 2020 <patrick@kudos.be> - 0.3.3
|
|
||||||
- Added check_linux_fail2ban_status plugin
|
|
||||||
* Fri Nov 1 2019 <patrick@kudos.be> - 0.3.2
|
|
||||||
- Added configuration file for check_linux_httpd_status plugin
|
|
||||||
* Sun Jul 14 2019 <patrick@kudos.be> - 0.3.1
|
|
||||||
- Removed check_linux_autofs plugin
|
|
||||||
* Sat Apr 20 2019 <patrick@kudos.be> - 0.3.0
|
|
||||||
- Removed Serviceguard plugins
|
|
||||||
* Tue Mar 26 2019 <patrick@kudos.be> - 0.2.0
|
* Tue Mar 26 2019 <patrick@kudos.be> - 0.2.0
|
||||||
- New git tree organization
|
- New git tree organization
|
||||||
* Sat Mar 09 2019 <patrick@kudos.be> - 0.1.5
|
* Sat Mar 09 2019 <patrick@kudos.be> - 0.1.5
|
||||||
|
@ -88,34 +88,6 @@ then
|
|||||||
else
|
else
|
||||||
echo "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
echo "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
||||||
fi
|
fi
|
||||||
# set SELinux contexts for logrotate
|
|
||||||
SESTATUS_BIN=$(command -v sestatus 2>/dev/null)
|
|
||||||
if [[ -n "${SESTATUS_BIN}" ]]
|
|
||||||
then
|
|
||||||
IS_ENFORCING=$(${SESTATUS_BIN} | grep -c "Current mode.*enforcing" 2>/dev/null)
|
|
||||||
if (( IS_ENFORCING > 0 ))
|
|
||||||
then
|
|
||||||
SEMANAGE_BIN=$(command -v semanage 2>/dev/null)
|
|
||||||
if [[ -n "${SEMANAGE_BIN}" ]]
|
|
||||||
then
|
|
||||||
${SEMANAGE_BIN} fcontext -a -t var_log_t "${HC_VAR_DIR}(/check_health\.sh\.log.*)?"
|
|
||||||
echo "INFO: SELinux fcontexts configured for log rotation"
|
|
||||||
if [[ -d ${HC_VAR_DIR} ]]
|
|
||||||
then
|
|
||||||
RESTORECON_BIN=$(command -v restorecon 2>/dev/null)
|
|
||||||
if [[ -n "${RESTORECON_BIN}" ]]
|
|
||||||
then
|
|
||||||
${RESTORECON_BIN} -Frv ${HC_VAR_DIR}
|
|
||||||
echo "INFO: SELinux fcontexts set on ${HC_VAR_DIR} for log rotation"
|
|
||||||
else
|
|
||||||
echo "WARN: SELinux is set to 'enforcing' but could not found 'restorecon' to set fcontexts for log rotation"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "WARN: SELinux is set to 'enforcing' but could not found 'semanage' to set fcontexts for log rotation"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
echo "INFO: finished post-install script"
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
|
@ -1,107 +0,0 @@
|
|||||||
%define build_timestamp %(date +"%Y%m%d")
|
|
||||||
|
|
||||||
Name: hc-notify-slack
|
|
||||||
Version: %{build_timestamp}
|
|
||||||
Release: 1
|
|
||||||
|
|
||||||
Summary: The KUDOS Health Checker (HC) for UNIX (Slack notify core plugin)
|
|
||||||
Group: Tools/Monitoring
|
|
||||||
|
|
||||||
License: GNU General Public License either version 2 of the License, or (at your option) any later version
|
|
||||||
URL: http://www.kudos.be
|
|
||||||
|
|
||||||
Requires: ksh,hc-linux
|
|
||||||
BuildArch: noarch
|
|
||||||
BuildRoot: %{_topdir}/%{name}-%{version}-root
|
|
||||||
|
|
||||||
%description
|
|
||||||
The Health Checker is collection of scripts (plugins) designed to perform regular - but not intensive - health checks on UNIX/Linux systems. It provides plugins for AIX, HP-UX and Linux as well customer specific checks. Checks may include topics such file system mounts, process checks, file consistency etc.
|
|
||||||
This package contains core plugins (notify).
|
|
||||||
|
|
||||||
%prep
|
|
||||||
|
|
||||||
%build
|
|
||||||
|
|
||||||
%install
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/core
|
|
||||||
cp ../SOURCES/opt/hc/lib/core/notify_slack.sh $RPM_BUILD_ROOT/opt/hc/lib/core/notify_slack.sh
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc/core
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc/core/providers
|
|
||||||
cp ../SOURCES/etc/opt/hc/core/providers/notify_slack.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/core/providers/notify_slack.conf.dist
|
|
||||||
|
|
||||||
%post
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of the HC configuration files
|
|
||||||
HC_ETC_DIR="/etc/opt/hc"
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-install script ..."
|
|
||||||
# copy plugin configuration file
|
|
||||||
if [[ ! -f ${HC_ETC_DIR}/core/providers/notify_slack.conf ]]
|
|
||||||
then
|
|
||||||
cp -p ${HC_ETC_DIR}/core/providers/notify_slack.conf.dist ${HC_ETC_DIR}/core/providers/notify_slack.conf >/dev/null
|
|
||||||
(( $? == 0 )) || \
|
|
||||||
{
|
|
||||||
echo "ERROR: could not copy plugin config file in ${HC_ETC_DIR}/core/providers"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
|
||||||
|
|
||||||
%postun
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of the HC configuration files
|
|
||||||
HC_ETC_DIR="/etc/opt/hc"
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
# update or uninstall?
|
|
||||||
if (( $1 == 0 ))
|
|
||||||
then
|
|
||||||
echo "INFO: starting post-uninstall script ..."
|
|
||||||
# copy plugin configuration file (.dist only)
|
|
||||||
if [[ -d ${HC_ETC_DIR}/core/providers ]]
|
|
||||||
then
|
|
||||||
rm -f ${HC_ETC_DIR}/core/providers/notify_slack.conf.dist 2>/dev/null
|
|
||||||
(( $? == 0 )) || \
|
|
||||||
{
|
|
||||||
echo "ERROR: could not remove plugin config file in ${HC_ETC_DIR}/core/providers"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "INFO: starting post-uninstall script (RPM upgrade)"
|
|
||||||
fi
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-uninstall script"
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root,755)
|
|
||||||
%dir /opt/hc/lib
|
|
||||||
%dir /opt/hc/lib/core
|
|
||||||
%attr(755, root, root) /opt/hc/lib/core/notify_slack.sh
|
|
||||||
%dir /etc/opt/hc
|
|
||||||
%dir /etc/opt/hc/core
|
|
||||||
%dir /etc/opt/hc/core/providers
|
|
||||||
%attr(644, root, root) /etc/opt/hc/core/providers/notify_slack.conf.dist
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Sun Oct 14 2022 <patrick@kudos.be> - 0.0.1
|
|
||||||
- Initial build
|
|
@ -47,7 +47,6 @@ rpmbuild -bb ${BUILD_DIR}/SPECS/hc-linux-platform.spec
|
|||||||
# build core plugins
|
# build core plugins
|
||||||
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-notify-eif.spec
|
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-notify-eif.spec
|
||||||
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-notify-sms.spec
|
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-notify-sms.spec
|
||||||
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-notify-slack.spec
|
|
||||||
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-display-init.spec
|
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-display-init.spec
|
||||||
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-display-json.spec
|
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-display-json.spec
|
||||||
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-display-csv.spec
|
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-display-csv.spec
|
||||||
|
@ -1,77 +0,0 @@
|
|||||||
#!/usr/bin/env ksh
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) build script for HC SD packages (uses 'swpackage')
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) Copyright (C) 2014 by KUDOS BVBA (info@kudos.be). All rights reserved.
|
|
||||||
#
|
|
||||||
# This program is a free software; you can redistribute it and/or modify
|
|
||||||
# it under the same terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
||||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# Requires following build (dir) structures:
|
|
||||||
#
|
|
||||||
# build/hpux/<build_files>
|
|
||||||
# build/hpux/build_hpux_depots.sh
|
|
||||||
# opt/hc/bin/<hc_scripts>
|
|
||||||
# opt/hc/lib/*/<hc_plugins>
|
|
||||||
# etc/opt/hc/<hc_configs>
|
|
||||||
# depots/
|
|
||||||
#
|
|
||||||
# Build order:
|
|
||||||
# 1) Copy sources/scrips to the correct locations
|
|
||||||
# 2) Copy pristine version of the build spec file to preserver %BUILD_DATE% (.psf)
|
|
||||||
# 3) Copy template, build and installer script files into correct locations
|
|
||||||
# 4) Execute build_hpux_depots.sh
|
|
||||||
# 5) SD packages may be found in the 'depots' directory
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
BUILD_DATE="$(date +'%Y%m%d')"
|
|
||||||
BUILD_PRETTY_DATE="$(date +'%Y.%m.%d')"
|
|
||||||
BUILD_DIR="$(dirname $0)"
|
|
||||||
|
|
||||||
# clean up previous packages
|
|
||||||
if [[ -d ../../../depots ]]
|
|
||||||
then
|
|
||||||
rm -f ../../../depots/* 2>/dev/null
|
|
||||||
else
|
|
||||||
mkdir -p ../../../depots 2>/dev/null
|
|
||||||
fi
|
|
||||||
|
|
||||||
# see if we have BUILD_DATE placeholder in PSF files
|
|
||||||
find ${BUILD_DIR} -name "*.psf" | while read FILE
|
|
||||||
do
|
|
||||||
if (( $(grep -c '%BUILD_DATE%' ${FILE}) == 0 ))
|
|
||||||
then
|
|
||||||
print -u2 "ERROR: no %BUILD_DATE% placeholder in ${FILE}!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
# replace BUILD_DATE placeholder in PSF files
|
|
||||||
find ${BUILD_DIR} -name "*.psf" | while read FILE
|
|
||||||
do
|
|
||||||
perl -pi -e "s/%BUILD_DATE%/${BUILD_PRETTY_DATE}/g" ${FILE}
|
|
||||||
done
|
|
||||||
|
|
||||||
# build hc_serviceguard_platform package
|
|
||||||
cd ${BUILD_DIR}/hc_serviceguard_platform || exit 1
|
|
||||||
swpackage -s hc_serviceguard_platform.psf -x media_type=tape -d ../../../../depots/hc-serviceguard-platform-${BUILD_DATE}.sd
|
|
||||||
cd - || exit 1
|
|
||||||
|
|
||||||
print "List of built packages:"
|
|
||||||
ls -l ../../../depots/*
|
|
||||||
|
|
||||||
# when installed on an ignite server: possible addition of depot registration here
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# END of script
|
|
||||||
#******************************************************************************
|
|
@ -1,104 +0,0 @@
|
|||||||
# Depot definition:
|
|
||||||
depot
|
|
||||||
layout_version 1.0
|
|
||||||
|
|
||||||
# Vendor definition:
|
|
||||||
vendor
|
|
||||||
tag KUDOS
|
|
||||||
title "KUDOS BVBA - http://www.kudos.be"
|
|
||||||
end
|
|
||||||
|
|
||||||
# Bundle definitions:
|
|
||||||
bundle
|
|
||||||
tag HC-SERVICEGUARD-PLATFORM
|
|
||||||
title "The Health Checker (HC) for UNIX (Serviceguard plugins)"
|
|
||||||
os_name HP-UX
|
|
||||||
revision %BUILD_DATE%
|
|
||||||
architecture HP-UX_B.11_32/64
|
|
||||||
machine_type ia64*
|
|
||||||
vendor_tag KUDOS
|
|
||||||
contents HC-SERVICEGUARD-PLATFORM-MAIN,r=,a=,v=
|
|
||||||
end
|
|
||||||
|
|
||||||
# Product definitions:
|
|
||||||
product
|
|
||||||
tag HC-SERVICEGUARD-PLATFORM-MAIN
|
|
||||||
revision %BUILD_DATE%
|
|
||||||
category tools
|
|
||||||
category_title Tools
|
|
||||||
title "The Health Checker (HC) for UNIX (Serviceguard plugins)"
|
|
||||||
description "The Health Checker is collection of scripts (plugins)
|
|
||||||
designed to perform regular - but not intensive - health checks on
|
|
||||||
UNIX/Linux systems. It provides plugins for AIX, HP-UX and Linux as
|
|
||||||
well customer specific checks. Checks may include topics such file
|
|
||||||
system mounts, process checks, file consistency etc.
|
|
||||||
This is the OS/platform plugin package"
|
|
||||||
architecture S700/S800_HP-UX_10/HP-UX_11/IA64_HP-UX_11
|
|
||||||
machine_type 9000/7*|9000/8*|ia64*
|
|
||||||
os_name HP-UX
|
|
||||||
os_release ?.1?.*
|
|
||||||
os_version [A-Z]
|
|
||||||
directory /opt/hc
|
|
||||||
is_locatable false
|
|
||||||
is_patch false
|
|
||||||
|
|
||||||
postinstall scripts/hc_serviceguard_platform.postinstall
|
|
||||||
postremove scripts/hc_serviceguard_platform.postremove
|
|
||||||
|
|
||||||
# Fileset definitions:
|
|
||||||
fileset
|
|
||||||
tag plugins
|
|
||||||
title UX Health Checker (Serviceguard plugins)
|
|
||||||
is_kernel false
|
|
||||||
is_locatable false
|
|
||||||
is_reboot false
|
|
||||||
is_sparse false
|
|
||||||
is_patch false
|
|
||||||
prerequisite HC-HPUX-MAIN
|
|
||||||
|
|
||||||
file_permissions -u 0222 -o root -g sys
|
|
||||||
|
|
||||||
directory ../../../../opt/hc/lib/platform/serviceguard=/opt/hc/lib/platform/serviceguard
|
|
||||||
file -m 755 check_serviceguard_package_status.sh
|
|
||||||
file -m 755 check_serviceguard_package_config.sh
|
|
||||||
file -m 755 check_serviceguard_cluster_status.sh
|
|
||||||
file -m 755 check_serviceguard_cluster_config.sh
|
|
||||||
file -m 755 check_serviceguard_qs_status.sh
|
|
||||||
end
|
|
||||||
|
|
||||||
fileset
|
|
||||||
tag config
|
|
||||||
title UX Health Checker (Serviceguard plugins: configuration)
|
|
||||||
is_kernel false
|
|
||||||
is_locatable false
|
|
||||||
is_reboot false
|
|
||||||
is_sparse false
|
|
||||||
is_patch false
|
|
||||||
prerequisite HC-SERVICEGUARD-PLATFORM-MAIN.plugins
|
|
||||||
|
|
||||||
file_permissions -u 0222 -o root -g sys
|
|
||||||
|
|
||||||
directory ../../../../etc/opt/hc/=/etc/opt/hc
|
|
||||||
file -m 644 check_serviceguard_package_status.conf.dist
|
|
||||||
file -m 644 check_serviceguard_package_config.conf.dist
|
|
||||||
file -m 644 check_serviceguard_cluster_status.conf.dist
|
|
||||||
file -m 644 check_serviceguard_cluster_config.conf.dist
|
|
||||||
end
|
|
||||||
|
|
||||||
fileset
|
|
||||||
tag templates
|
|
||||||
title UX Health Checker (Serviceguard plugins: templates)
|
|
||||||
is_kernel false
|
|
||||||
is_locatable false
|
|
||||||
is_reboot false
|
|
||||||
is_sparse false
|
|
||||||
is_patch false
|
|
||||||
prerequisite HC-SERVICEGUARD-PLATFORM-MAIN.plugins
|
|
||||||
|
|
||||||
file_permissions -u 0222 -o root -g sys
|
|
||||||
|
|
||||||
directory ../../../../etc/opt/hc/core/templates=/etc/opt/hc/core/templates
|
|
||||||
file -m 644 mail_body.tpl-check_hpux_sg_cluster_status
|
|
||||||
file -m 644 mail_body.tpl-check_hpux_sg_package_status
|
|
||||||
end
|
|
||||||
end
|
|
@ -1,39 +0,0 @@
|
|||||||
#!/usr/bin/env ksh
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) post-install script for HC-SERVICEGUARD-PLATFORM SD package
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) Copyright (C) 2014 by KUDOS BVBA (info@kudos.be). All rights reserved.
|
|
||||||
#
|
|
||||||
# This program is a free software; you can redistribute it and/or modify
|
|
||||||
# it under the same terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
||||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
|
|
||||||
print "INFO: starting post-install script ..."
|
|
||||||
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks || print -u2 "WARN: updating symlinks failed"
|
|
||||||
else
|
|
||||||
print -u2 "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
|
||||||
fi
|
|
||||||
|
|
||||||
print "INFO: finished post-install script"
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# END of script
|
|
||||||
#******************************************************************************
|
|
@ -1,39 +0,0 @@
|
|||||||
#!/usr/bin/env ksh
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) post-remove script for HC-PLATFORM SD package
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) Copyright (C) 2014 by KUDOS BVBA (info@kudos.be). All rights reserved.
|
|
||||||
#
|
|
||||||
# This program is a free software; you can redistribute it and/or modify
|
|
||||||
# it under the same terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
||||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
|
|
||||||
print "INFO: starting post-remove script ..."
|
|
||||||
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks || print -u2 "WARN: updating symlinks failed"
|
|
||||||
else
|
|
||||||
print -u2 "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
|
||||||
fi
|
|
||||||
|
|
||||||
print "INFO: finished post-remove script"
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# END of script
|
|
||||||
#******************************************************************************
|
|
@ -1,33 +0,0 @@
|
|||||||
# -- post-install --
|
|
||||||
post_install() {
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-install script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
|
||||||
}
|
|
||||||
|
|
||||||
# -- post-remove --
|
|
||||||
post_remove() {
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-uninstall script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-uninstall script"
|
|
||||||
}
|
|
@ -1,34 +0,0 @@
|
|||||||
# Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
|
||||||
|
|
||||||
_pkgname="check_health"
|
|
||||||
pkgname="hc-serviceguard-platform"
|
|
||||||
pkgver="%BUILD_DATE%"
|
|
||||||
pkgrel=1
|
|
||||||
pkgdesc="The KUDOS Health Checker (HC) for UNIX (Serviceguard plugins)"
|
|
||||||
arch=("any")
|
|
||||||
url="https://github.com/patvdv/${_pkgname}"
|
|
||||||
license=('GPL3')
|
|
||||||
makedepends=('git')
|
|
||||||
depends=('hc-linux')
|
|
||||||
source=("${_pkgname}::git+${url}.git#branch=master")
|
|
||||||
install=".install"
|
|
||||||
sha256sums=('SKIP')
|
|
||||||
|
|
||||||
package() {
|
|
||||||
cd "${srcdir}/${_pkgname}"
|
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib
|
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib/platform
|
|
||||||
install -d -m 755 ${pkgdir}/opt/hc/lib/platform/serviceguard
|
|
||||||
install -D -m 755 opt/hc/lib/platform/serviceguard/check_serviceguard_cluster_config.sh ${pkgdir}/opt/hc/lib/platform/serviceguard/check_serviceguard_cluster_config.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/serviceguard/check_serviceguard_cluster_status.sh ${pkgdir}/opt/hc/lib/platform/serviceguard/check_serviceguard_cluster_status.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/serviceguard/check_serviceguard_package_config.sh ${pkgdir}/opt/hc/lib/platform/serviceguard/check_serviceguard_package_config.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/serviceguard/check_serviceguard_package_status.sh ${pkgdir}/opt/hc/lib/platform/serviceguard/check_serviceguard_package_status.sh
|
|
||||||
install -D -m 755 opt/hc/lib/platform/serviceguard/check_serviceguard_qs_status.sh ${pkgdir}/opt/hc/lib/platform/serviceguard/check_serviceguard_qs_status.sh
|
|
||||||
install -d -m 755 ${pkgdir}/etc/opt/hc
|
|
||||||
install -D -m 644 etc/opt/hc/check_serviceguard_cluster_config.conf.dist ${pkgdir}/etc/opt/hc/check_serviceguard_cluster_config.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_serviceguard_cluster_status.conf.dist ${pkgdir}/etc/opt/hc/check_serviceguard_cluster_status.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_serviceguard_package_config.conf.dist ${pkgdir}/etc/opt/hc/check_serviceguard_package_config.conf.dist
|
|
||||||
install -D -m 644 etc/opt/hc/check_serviceguard_package_status.conf.dist ${pkgdir}/etc/opt/hc/check_serviceguard_package_status.conf.dist
|
|
||||||
install -d -m 755 ${pkgdir}/etc/opt/hc/core
|
|
||||||
install -d -m 755 ${pkgdir}/etc/opt/hc/core/templates
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
Package: hc-serviceguard-platform
|
|
||||||
Version: %BUILD_DATE%
|
|
||||||
Architecture: all
|
|
||||||
Maintainer: Patrick Van der Veken <patrick@kudos.be>
|
|
||||||
Essential: no
|
|
||||||
Installed-Size: 300
|
|
||||||
Depends: hc-linux
|
|
||||||
Section: tools
|
|
||||||
Priority: extra
|
|
||||||
Description: The KUDOS Health Checker (HC) for UNIX (Serviceguard plugins).
|
|
@ -1,16 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-install script ..."
|
|
||||||
# debian: reset ownerships
|
|
||||||
chown -R root:root /opt/hc /etc/opt/hc 2>/dev/null
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
|
@ -1,14 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-uninstall script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-uninstall script"
|
|
@ -1,93 +0,0 @@
|
|||||||
%define build_timestamp %(date +"%Y%m%d")
|
|
||||||
|
|
||||||
Name: hc-serviceguard-platform
|
|
||||||
Version: %{build_timestamp}
|
|
||||||
Release: 1
|
|
||||||
|
|
||||||
Summary: The KUDOS Health Checker (HC) for UNIX (Serviceguard plugins)
|
|
||||||
Group: Tools/Monitoring
|
|
||||||
|
|
||||||
License: GNU General Public License either version 2 of the License, or (at your option) any later version
|
|
||||||
URL: http://www.kudos.be
|
|
||||||
|
|
||||||
Requires: ksh,hc-linux
|
|
||||||
BuildArch: noarch
|
|
||||||
BuildRoot: %{_topdir}/%{name}-%{version}-root
|
|
||||||
|
|
||||||
%description
|
|
||||||
The Health Checker is collection of scripts (plugins) designed to perform regular - but not intensive - health checks on UNIX/Linux systems. It provides plugins for AIX, HP-UX and Linux as well customer specific checks. Checks may include topics such file system mounts, process checks, file consistency etc.
|
|
||||||
This package contains Serviceguard platform specific plugins.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
|
|
||||||
%build
|
|
||||||
|
|
||||||
%install
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/platform
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/opt/hc/lib/platform/serviceguard
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/serviceguard/check_serviceguard_cluster_config.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/serviceguard/check_serviceguard_cluster_config.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/serviceguard/check_serviceguard_cluster_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/serviceguard/check_serviceguard_cluster_status.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/serviceguard/check_serviceguard_package_config.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/serviceguard/check_serviceguard_package_config.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/serviceguard/check_serviceguard_package_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/serviceguard/check_serviceguard_package_status.sh
|
|
||||||
cp ../SOURCES/opt/hc/lib/platform/serviceguard/check_serviceguard_qs_status.sh $RPM_BUILD_ROOT/opt/hc/lib/platform/serviceguard/check_serviceguard_qs_status.sh
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_serviceguard_cluster_config.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_serviceguard_cluster_config.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_serviceguard_cluster_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_serviceguard_cluster_status.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_serviceguard_package_config.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_serviceguard_package_config.conf.dist
|
|
||||||
cp ../SOURCES/etc/opt/hc/check_serviceguard_package_status.conf.dist $RPM_BUILD_ROOT/etc/opt/hc/check_serviceguard_package_status.conf.dist
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc/core
|
|
||||||
install -d -m 755 $RPM_BUILD_ROOT/etc/opt/hc/core/templates
|
|
||||||
|
|
||||||
%post
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-install script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-install script"
|
|
||||||
|
|
||||||
%postun
|
|
||||||
# ------------------------- CONFIGURATION starts here -------------------------
|
|
||||||
# location of check_health.sh
|
|
||||||
HC_BIN="/opt/hc/bin/check_health.sh"
|
|
||||||
PATH="$PATH:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin"
|
|
||||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
||||||
echo "INFO: starting post-uninstall script ..."
|
|
||||||
# refresh symbolic FPATH links
|
|
||||||
if [[ -x ${HC_BIN} ]]
|
|
||||||
then
|
|
||||||
${HC_BIN} --fix-symlinks
|
|
||||||
(( $? == 0 )) || echo "WARN: updating symlinks failed"
|
|
||||||
fi
|
|
||||||
echo "INFO: finished post-uninstall script"
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root,755)
|
|
||||||
%dir /opt/hc/lib
|
|
||||||
%dir /opt/hc/lib/platform
|
|
||||||
%dir /opt/hc/lib/platform/serviceguard
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/serviceguard/check_serviceguard_cluster_config.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/serviceguard/check_serviceguard_cluster_status.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/serviceguard/check_serviceguard_package_config.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/serviceguard/check_serviceguard_package_status.sh
|
|
||||||
%attr(755, root, root) /opt/hc/lib/platform/serviceguard/check_serviceguard_qs_status.sh
|
|
||||||
%dir /etc/opt/hc
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_serviceguard_cluster_config.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_serviceguard_cluster_status.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_serviceguard_package_config.conf.dist
|
|
||||||
%attr(644, root, root) /etc/opt/hc/check_serviceguard_package_status.conf.dist
|
|
||||||
%dir /etc/opt/hc/core
|
|
||||||
%dir /etc/opt/hc/core/templates
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Sat Apr 20 2019 <patrick@kudos.be> - 0.0.1
|
|
||||||
- Initial build
|
|
@ -1,53 +0,0 @@
|
|||||||
#!/usr/bin/env ksh
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) build script for HC RPM packages (uses 'rpmbuild')
|
|
||||||
#******************************************************************************
|
|
||||||
# @(#) Copyright (C) 2014 by KUDOS BVBA (info@kudos.be). All rights reserved.
|
|
||||||
#
|
|
||||||
# This program is a free software; you can redistribute it and/or modify
|
|
||||||
# it under the same terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
||||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# Requires following build (dir) structures:
|
|
||||||
#
|
|
||||||
# hc_build_linux_rpms.sh
|
|
||||||
# BUILD/
|
|
||||||
# BUILDROOT/
|
|
||||||
# RPMS/
|
|
||||||
# SOURCES/opt/
|
|
||||||
# SOURCES/opt/hc/bin/<hc_scripts>
|
|
||||||
# SOURCES/opt/hc/lib/*/<hc_plugins>
|
|
||||||
# SOURCES/etc/opt/hc/<hc_configs>
|
|
||||||
# SPECS/<spec_files>
|
|
||||||
# SRPMS/
|
|
||||||
#
|
|
||||||
# Build order:
|
|
||||||
# 1) Copy sources/scripts to the correct locations
|
|
||||||
# 2) Copy template, build and installer script files into correct locations
|
|
||||||
# 3) Execute hc_build_linux_rpms.sh
|
|
||||||
# 4) RPM packages may be found in the RPMS directory
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
BUILD_DIR="$(dirname $0)"
|
|
||||||
|
|
||||||
# clean up previous packages
|
|
||||||
rm -f ${BUILD_DIR}/RPMS/*/* >/dev/null
|
|
||||||
|
|
||||||
# build main packages
|
|
||||||
rpmbuild -bb ${BUILD_DIR}/SPECS/hc-serviceguard-platform.spec
|
|
||||||
|
|
||||||
print "List of built packages:"
|
|
||||||
ls -l ${BUILD_DIR}/RPMS/*/*
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# END of script
|
|
||||||
#******************************************************************************
|
|
@ -13,11 +13,9 @@ log_healthy="no"
|
|||||||
|
|
||||||
# full path to the location of mksysb images, the tool expects sub-directories
|
# full path to the location of mksysb images, the tool expects sub-directories
|
||||||
# per host underneath this location
|
# per host underneath this location
|
||||||
# [default: /export/images]
|
|
||||||
backup_path=/export/images
|
backup_path=/export/images
|
||||||
|
|
||||||
# name of the file containing the mksysb output
|
# name of the file containing the mksysb output
|
||||||
# [default: mksysb.log]
|
|
||||||
mksysb_log=mksysb.log
|
mksysb_log=mksysb.log
|
||||||
|
|
||||||
# maximum days before backup gets flagged as 'too old'
|
# maximum days before backup gets flagged as 'too old'
|
||||||
|
@ -1,41 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_aix_uptime.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_aix_uptime HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="no"
|
|
||||||
|
|
||||||
# trigger event when current uptime is less than previously record uptime?
|
|
||||||
# [default: yes]
|
|
||||||
check_reboot="yes"
|
|
||||||
|
|
||||||
# time to wait before the current uptime is considered for the reboot check.
|
|
||||||
# Example: a value of 60m means the check for a previous reboot will be at earliest
|
|
||||||
# performed 1 hour after the last reboot of the host.
|
|
||||||
# Format: <value>m|h|d where m=minutes, h=hours, d=days (lowercase suffix).
|
|
||||||
# if no suffix is specified, then minutes are assumed.
|
|
||||||
# [default: 60m]
|
|
||||||
reboot_time="60m"
|
|
||||||
|
|
||||||
# trigger event when current uptime goes over the maximum threshold?
|
|
||||||
# [default: no]
|
|
||||||
check_old_age="no"
|
|
||||||
|
|
||||||
# time to expire before the current uptime is considered "old age".
|
|
||||||
# Example: a value of 365d means a must-reboot will be flagged at earliest after
|
|
||||||
# 1 year of uptime of the host
|
|
||||||
# Format: <value>m|h|d where m=minutes, h=hours, d=days (lowercase suffix).
|
|
||||||
# if no suffix is specified, then minutes are assumed.
|
|
||||||
# [default: 365d]
|
|
||||||
old_age_time="365d"
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,28 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_clusterware_resource_config.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_clusterware_resource_config HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="no"
|
|
||||||
|
|
||||||
# location of the crsctl tool
|
|
||||||
# [default: null (autodiscovery)]
|
|
||||||
crsctl_bin=""
|
|
||||||
|
|
||||||
# stanza(s) of resource definitions (case sensitive).
|
|
||||||
# Example:
|
|
||||||
#[myresource]
|
|
||||||
#NAME=myresource
|
|
||||||
#TYPE=cluster_resource
|
|
||||||
#ACL=owner:root:rwx,pgrp:root:r-x,other::r--,user:oracle:r-x
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,30 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_clusterware_resource_status.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_clusterware_resource_status HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="no"
|
|
||||||
|
|
||||||
# location of the crsctl tool
|
|
||||||
# [default: null (autodiscovery)]
|
|
||||||
crsctl_bin=""
|
|
||||||
|
|
||||||
# list of required resource statuses
|
|
||||||
# Format:
|
|
||||||
# crs:<resource_name>:<*|node>=<ONLINE|OFFLINE>,<*|node>=<ONLINE|OFFLINE>,...
|
|
||||||
# Note: ONLINE definitions must precede OFFLINE definitions (if used)
|
|
||||||
# Examples:
|
|
||||||
#crs:res1:node1=ONLINE
|
|
||||||
#crs:res2:*=ONLINE
|
|
||||||
#crs:res3:node1=ONLINE,node2=OFFLINE
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,30 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_exadata_cell_alerts.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_exadata_cell_alerts HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="yes"
|
|
||||||
|
|
||||||
# specify the user account for the dcli session to the cell server
|
|
||||||
# [default: root]
|
|
||||||
dcli_user=""
|
|
||||||
|
|
||||||
# specify the cell servers to query
|
|
||||||
# [default: null]
|
|
||||||
cell_servers=""
|
|
||||||
|
|
||||||
# specify the alert severities to report (comma-separated)
|
|
||||||
# Possible values: critical/warning/info/clear
|
|
||||||
# [default: critical]
|
|
||||||
alert_severities="critical"
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,29 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_exadata_cell_celldisks.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_exadata_cell_celldisks HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="yes"
|
|
||||||
|
|
||||||
# specify the user account for the dcli session to the cell server
|
|
||||||
# [default: root]
|
|
||||||
dcli_user=""
|
|
||||||
|
|
||||||
# specify the cell servers to query
|
|
||||||
# [default: null]
|
|
||||||
cell_servers=""
|
|
||||||
|
|
||||||
# specify which cell disks to exclude from the check (comma-separated)
|
|
||||||
# [default: null]
|
|
||||||
excluded_disks=""
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,37 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_exadata_cell_flash.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_exadata_cell_flash HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="yes"
|
|
||||||
|
|
||||||
# specify the user account for the dcli session to the cell server
|
|
||||||
# [default: root]
|
|
||||||
dcli_user=""
|
|
||||||
|
|
||||||
# specify the cell servers to query
|
|
||||||
# [default: null]
|
|
||||||
cell_servers=""
|
|
||||||
|
|
||||||
# specify which flash devices to exclude from the check (comma-separated)
|
|
||||||
# [default: null]
|
|
||||||
excluded_devices=""
|
|
||||||
|
|
||||||
# specify whether to check the flash cache status (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_flashcache="yes"
|
|
||||||
|
|
||||||
# specify whether to check the flash log status (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_flashlog="yes"
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,33 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_exadata_cell_griddisks.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_exadata_cell_griddisks HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="yes"
|
|
||||||
|
|
||||||
# specify the user account for the dcli session to the cell server
|
|
||||||
# [default: root]
|
|
||||||
dcli_user=""
|
|
||||||
|
|
||||||
# specify the cell servers to query
|
|
||||||
# [default: null]
|
|
||||||
cell_servers=""
|
|
||||||
|
|
||||||
# specify which grid disks to exclude from the check (comma-separated)
|
|
||||||
# [default: null]
|
|
||||||
excluded_disks=""
|
|
||||||
|
|
||||||
# specify whether to check the errorCount of griddisks (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_errorcount="yes"
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,29 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_exadata_cell_luns.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_exadata_cell_luns HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="yes"
|
|
||||||
|
|
||||||
# specify the user account for the dcli session to the cell server
|
|
||||||
# [default: root]
|
|
||||||
dcli_user=""
|
|
||||||
|
|
||||||
# specify the cell servers to query
|
|
||||||
# [default: null]
|
|
||||||
cell_servers=""
|
|
||||||
|
|
||||||
# specify which luns to exclude from the check (comma-separated)
|
|
||||||
# [default: null]
|
|
||||||
excluded_luns=""
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,53 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_exadata_cell_megaraid.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_exadata_cell_megaraid HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="yes"
|
|
||||||
|
|
||||||
# specify the user account for the dcli session to the cell server
|
|
||||||
# [default: root]
|
|
||||||
dcli_user=""
|
|
||||||
|
|
||||||
# specify the cell servers to query
|
|
||||||
# [default: null]
|
|
||||||
cell_servers=""
|
|
||||||
|
|
||||||
# specify whether to check the controller state (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_controller="yes"
|
|
||||||
|
|
||||||
# specify whether to check the BBU (battery) state (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_bbu="yes"
|
|
||||||
|
|
||||||
# specify whether to check the BBU (supercap) state (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_supercap="yes"
|
|
||||||
|
|
||||||
# specify whether to check the physical devices (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_physical="yes"
|
|
||||||
|
|
||||||
# specify whether to check the virtual devices (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_virtual="yes"
|
|
||||||
|
|
||||||
# individual checks that should be disabled (wildcards are not supported)
|
|
||||||
# cell_exclude:<cell_server>:<controller|bbu|supercap|physical|virtual>
|
|
||||||
# Examples:
|
|
||||||
# disable controller check on mycell1
|
|
||||||
# cell_exclude:mycell1:controller
|
|
||||||
# disable bbu check on mycell2
|
|
||||||
# cell_exclude:mycell2:bbu
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,29 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_exadata_cell_physicaldisks.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_exadata_cell_physicaldisks HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="yes"
|
|
||||||
|
|
||||||
# specify the user account for the dcli session to the cell server
|
|
||||||
# [default: root]
|
|
||||||
dcli_user=""
|
|
||||||
|
|
||||||
# specify the cell servers to query
|
|
||||||
# [default: null]
|
|
||||||
cell_servers=""
|
|
||||||
|
|
||||||
# specify which physical disks to exclude from the check (comma-separated)
|
|
||||||
# [default: null]
|
|
||||||
excluded_disks=""
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,37 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_exadata_megaraid.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_exadata_megaraid HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="yes"
|
|
||||||
|
|
||||||
# specify whether to check the controller state (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_controller="yes"
|
|
||||||
|
|
||||||
# specify whether to check the BBU (battery) state (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_bbu="yes"
|
|
||||||
|
|
||||||
# specify whether to check the BBU (supercap) state (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_supercap="yes"
|
|
||||||
|
|
||||||
# specify whether to check the physical devices (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_physical="yes"
|
|
||||||
|
|
||||||
# specify whether to check the virtual devices (yes|no)
|
|
||||||
# [default: yes]
|
|
||||||
check_virtual="yes"
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,35 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_exadata_zfs_cluster.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_exadata_zfs_cluster HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="yes"
|
|
||||||
|
|
||||||
# specify the user account for the SSH session to the ZFS appliance(s)
|
|
||||||
# [default: root]
|
|
||||||
ssh_user=""
|
|
||||||
|
|
||||||
# specify the private key file for the SSH session to the ZFS appliance(s)
|
|
||||||
# [default: ~root/.ssh/id_rsa]
|
|
||||||
ssh_key_file=""
|
|
||||||
|
|
||||||
# specify additional options for the SSH session to the ZFS appliance(s)
|
|
||||||
# [default: null]
|
|
||||||
ssh_opts=""
|
|
||||||
|
|
||||||
# specify the ZFS hostname(s) to check the cluster states on
|
|
||||||
# Format:
|
|
||||||
# zfs:<host_name>
|
|
||||||
# Examples:
|
|
||||||
# zfs:myzfs1
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,7 +1,7 @@
|
|||||||
#******************************************************************************
|
#******************************************************************************
|
||||||
# @(#) check_exadata_zfs_logs.conf
|
# @(#) check_exadata_zfs_share_usage.conf
|
||||||
#******************************************************************************
|
#******************************************************************************
|
||||||
# This is a configuration file for the check_exadata_zfs_logs HC plugin.
|
# This is a configuration file for the check_exadata_zfs_share_usage HC plugin.
|
||||||
# All lines starting with a '#' are comment lines.
|
# All lines starting with a '#' are comment lines.
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
# [default: indicates hardcoded script values if no value is defined here]
|
||||||
#******************************************************************************
|
#******************************************************************************
|
||||||
@ -25,7 +25,7 @@ ssh_opts=""
|
|||||||
|
|
||||||
# specify the ZFS hostname(s), log name(s) & alert levels. Filters
|
# specify the ZFS hostname(s), log name(s) & alert levels. Filters
|
||||||
# should be comma-separated. Following logs are supported (filters in brackets)
|
# should be comma-separated. Following logs are supported (filters in brackets)
|
||||||
# alert (critical,major,minor)
|
# alert (critical,major,minor
|
||||||
# fltlog (critical,major,minor)
|
# fltlog (critical,major,minor)
|
||||||
# system (error)
|
# system (error)
|
||||||
# scrk (failed)
|
# scrk (failed)
|
||||||
|
@ -1,53 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_exadata_zfs_pool_usage.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_exadata_zfs_pool_usage HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="yes"
|
|
||||||
|
|
||||||
# specify the user account for the SSH session to the ZFS appliance(s)
|
|
||||||
# [default: root]
|
|
||||||
ssh_user=""
|
|
||||||
|
|
||||||
# specify the private key file for the SSH session to the ZFS appliance(s)
|
|
||||||
# [default: ~root/.ssh/id_rsa]
|
|
||||||
ssh_key_file=""
|
|
||||||
|
|
||||||
# specify additional options for the SSH session to the ZFS appliance(s)
|
|
||||||
# [default: null]
|
|
||||||
ssh_opts=""
|
|
||||||
|
|
||||||
# specify the maximum % of space usage a share may reach (general threshold)
|
|
||||||
# [default: 90]
|
|
||||||
max_space_usage=90
|
|
||||||
|
|
||||||
# specify the ZFS hostname(s), pool name(s) and their maximum usage (in %)
|
|
||||||
# When not defining a threshold for a given share, the general threshold will
|
|
||||||
# be used (see above). When defining a threshold of 0 (zero), then the check
|
|
||||||
# will for this given pool will be skipped (this allows for exclusion of pools)
|
|
||||||
# In order to check pool(s) for a given ZFS appliance at least one configuration
|
|
||||||
# entry must be present: either a wildcard or custom entry.
|
|
||||||
# Format:
|
|
||||||
# zfs:<host_name>:<pool_name|*>:[<usage_threshold_%>]
|
|
||||||
# Examples:
|
|
||||||
# check pool1 on myzfs1 with a custom threshold of 75%
|
|
||||||
# zfs:myzfs1:pool1:75
|
|
||||||
# check all pools of myzfs2 with a custom threshold of 85%
|
|
||||||
# zfs:myzfs2:*:85
|
|
||||||
# check all shares of myzfs3 with the general threshold
|
|
||||||
# zfs:myzfs3:*:
|
|
||||||
# disable all shares of myzfs4 from checking
|
|
||||||
# zfs:myzfs4:*:0
|
|
||||||
# disable check of pool7 on myzfs5
|
|
||||||
# zfs:myzfs5:pool7:0
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -30,29 +30,24 @@ max_replication_lag=300
|
|||||||
# specify the ZFS hostname(s), replication name(s) and their maximum lag (in seconds)
|
# specify the ZFS hostname(s), replication name(s) and their maximum lag (in seconds)
|
||||||
# When not defining a threshold for a given share, the general threshold will
|
# When not defining a threshold for a given share, the general threshold will
|
||||||
# be used (see above). When defining a threshold of 0 (zero), then the check
|
# be used (see above). When defining a threshold of 0 (zero), then the check
|
||||||
# will for this given share will be skipped (this allows for exclusion of shares)
|
# will for this give share will be skipped (this allows for exclusion of shares)
|
||||||
# In order to check share(s) for a given ZFS appliance at least one configuration
|
# In order to check share(s) for a given ZFS appliance at least one configuration
|
||||||
# entry must be present: either a wildcard or custom entry.
|
# entry must be present: either a wildcard or custom entry.
|
||||||
# Caveat: any share must finally resolve to one entry only.
|
|
||||||
# Format:
|
# Format:
|
||||||
# zfs:<host_name>:<replication_name|*>:<true|false|*>:<success|failed|*>:[<max_replication_lag>]:[day1,day2,..|*>]:[<hour|<start_hour-end_hour>|*>]
|
# zfs:<host_name>:<replication_name|*>:<true|false|*>:<success|failed|*>:[<max_replication_lag>]
|
||||||
#
|
|
||||||
# <day>: 3 letter day name (case insensitive)
|
|
||||||
# <hour>: 24 hours notation (start and end hours are inclusive)
|
|
||||||
#
|
|
||||||
# Examples:
|
# Examples:
|
||||||
# check rep_share1 on myzfs1 with a custom threshold of 300 seconds on every day of the week
|
# check rep_share1 on myzfs1 with a custom threshold of 300 seconds
|
||||||
# zfs:myzfs1:rep_share1:*:*:600:*
|
# zfs:myzfs1:rep_share1:*:*:600
|
||||||
# check all shares of myzfs2 with a custom threshold of 1200 seconds on Sunday and Monday
|
# check all shares of myzfs2 with a custom threshold of 1200 seconds
|
||||||
# zfs:myzfs2:*:*:*:1200:Sun,Mon
|
# zfs:myzfs2:*:*:*:1200
|
||||||
# check all shares of myzfs3 with the general threshold but only on Friday between 7am-10m
|
# check all shares of myzfs3 with the general threshold
|
||||||
# zfs:myzfs3:*:*:*:Fri:07-10
|
# zfs:myzfs3:*:*:*:
|
||||||
# disable all shares of myzfs4 from checking
|
# disable all shares of myzfs4 from checking
|
||||||
# zfs:myzfs4:*:*:*:0:*
|
# zfs:myzfs4:*:*:*:0
|
||||||
# disable check of rep_share7 on myzfs5
|
# disable check of rep_share7 on myzfs5
|
||||||
# zfs:myzfs5:rep_share7:*:*:0:*
|
# zfs:myzfs5:rep_share7:*:*:0
|
||||||
# check that rep_share4 on myzfs6 is inactive (every day of the week)
|
# check that rep_share4 on myzfs6 is inactive
|
||||||
# zfs:myzfs6:rep_share4:false:*:*
|
# zfs:myzfs6:rep_share4:false:*:
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
#******************************************************************************
|
||||||
|
@ -30,14 +30,13 @@ max_space_usage=90
|
|||||||
# specify the ZFS hostname(s), project+share name(s) and their maximum usage (in %)
|
# specify the ZFS hostname(s), project+share name(s) and their maximum usage (in %)
|
||||||
# When not defining a threshold for a given share, the general threshold will
|
# When not defining a threshold for a given share, the general threshold will
|
||||||
# be used (see above). When defining a threshold of 0 (zero), then the check
|
# be used (see above). When defining a threshold of 0 (zero), then the check
|
||||||
# will for this given share will be skipped (this allows for exclusion of shares)
|
# will for this give share will be skipped (this allows for exclusion of shares)
|
||||||
# In order to check share(s) for a given ZFS appliance at least one configuration
|
# In order to check share(s) for a given ZFS appliance at least one configuration
|
||||||
# entry must be present: either a wildcard or custom entry.
|
# entry must be present: either a wildcard or custom entry.
|
||||||
# Caveat: any share must finally resolve to one entry only.
|
|
||||||
# Format:
|
# Format:
|
||||||
# zfs:<host_name>:<project_name|*>:<share_name|*>:[<usage_threshold_%>]
|
# zfs:<host_name>:<project_name|*>:<share_name|*>:[<usage_threshold_%>]
|
||||||
# Examples:
|
# Examples:
|
||||||
# check share1 of projectX on myzfs1 with a custom threshold of 75%
|
# check share1 on myzfs1 with a custom threshold of 75%
|
||||||
# zfs:myzfs1:projectX:share1:75
|
# zfs:myzfs1:projectX:share1:75
|
||||||
# check all shares of myzfs2 with a custom threshold of 85%
|
# check all shares of myzfs2 with a custom threshold of 85%
|
||||||
# zfs:myzfs2:*:*:85
|
# zfs:myzfs2:*:*:85
|
||||||
@ -45,7 +44,7 @@ max_space_usage=90
|
|||||||
# zfs:myzfs3:*:*:
|
# zfs:myzfs3:*:*:
|
||||||
# disable all shares of myzfs4 from checking
|
# disable all shares of myzfs4 from checking
|
||||||
# zfs:myzfs4:*:*:0
|
# zfs:myzfs4:*:*:0
|
||||||
# disable check of share7 of projectY on myzfs5
|
# disable check of share7 on myzfs5
|
||||||
# zfs:myzfs5:projectY:share7:0
|
# zfs:myzfs5:projectY:share7:0
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,31 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_hpux_autofs.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_hpux_autofs HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="no"
|
|
||||||
|
|
||||||
# specify whether to fix autofs (if needed)
|
|
||||||
# [default: no]
|
|
||||||
fix_autofs="no"
|
|
||||||
|
|
||||||
# number of times to attempt to restart the autofs daemon
|
|
||||||
# (requires fix_autofs=yes)
|
|
||||||
# [default: 3]
|
|
||||||
retry_start=3
|
|
||||||
|
|
||||||
# number of seconds to sleep between daemon restart attempts
|
|
||||||
# (requires fix_autofs=yes)
|
|
||||||
# [default: 5]
|
|
||||||
sleep_time=5
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,25 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_hpux_cron_status.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_hpux_cron_status HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="no"
|
|
||||||
|
|
||||||
# specify the wait time (in seconds) between registering and checking a cron task
|
|
||||||
# [default: 10]
|
|
||||||
wait_time=10
|
|
||||||
|
|
||||||
# specify the path the cron log file
|
|
||||||
# [default: /var/adm/cron/log]
|
|
||||||
cron_log="/var/adm/cron/log"
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,27 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_hpux_defunct_processes.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_hpux_defunct_processes HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="yes"
|
|
||||||
|
|
||||||
# specify above which threshold of defunct processes to generate a HC fail event
|
|
||||||
# If group_by_ppid is set to 'yes' then the value of 'process_threshold' will
|
|
||||||
# apply for each PPID, otherwise it will apply to all defunct processes together
|
|
||||||
# [default: 10]
|
|
||||||
process_threshold=10
|
|
||||||
|
|
||||||
# specify whether to group by parent ID or not.
|
|
||||||
# [default: yes]
|
|
||||||
group_by_ppid="yes"
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -32,7 +32,7 @@ max_space_usage=90
|
|||||||
# defining a threshold of 0 (zero), then the check will for this give filesystem
|
# defining a threshold of 0 (zero), then the check will for this give filesystem
|
||||||
# will be skipped (this allows for exclusion of filesystems)
|
# will be skipped (this allows for exclusion of filesystems)
|
||||||
# Format:
|
# Format:
|
||||||
# fs:<mount_point>:[<max_inodes_usage_%>]:[<max_space_usage_%]
|
# fs:<mount_point>:[<max_inode_usage_%>]:[<max_space_usage_%]
|
||||||
# Examples:
|
# Examples:
|
||||||
# check myfs1 with a custom inodes + space usage threshold
|
# check myfs1 with a custom inodes + space usage threshold
|
||||||
#fs:myfs1:70:95
|
#fs:myfs1:70:95
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
# [default: no]
|
# [default: no]
|
||||||
log_healthy="no"
|
log_healthy="no"
|
||||||
|
|
||||||
# specify properties as displayed by the 'hpvmstatus -M' command
|
# specify properties as displayed by the 'vzlist -a -H -o ctid,status,onboot' command
|
||||||
# Format:
|
# Format:
|
||||||
# [vpar:<parid>:<runtime_status>:<boot_status>]
|
# [vpar:<parid>:<runtime_status>:<boot_status>]
|
||||||
# runtime_status should be 'on' or 'off'
|
# runtime_status should be 'on' or 'off'
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
#******************************************************************************
|
#******************************************************************************
|
||||||
# @(#) notify_slack.conf
|
# @(#) check_hpux_sg_cluster_config.conf
|
||||||
#******************************************************************************
|
#******************************************************************************
|
||||||
# This is the the configuration file for the notify_slack.sh provider.
|
# This is a configuration file for the check_hpux_sg_cluster_config HC plugin.
|
||||||
# All lines starting with a '#' are comment lines.
|
# All lines starting with a '#' are comment lines.
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
# It is recommended to only monitor unique "param1 value2" combinations
|
||||||
#******************************************************************************
|
#******************************************************************************
|
||||||
|
|
||||||
# URL of the webhook of the Slack app
|
#[mycluster]
|
||||||
SLACK_WEBHOOK=""
|
#param1 value1
|
||||||
|
#param2 value2
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
#******************************************************************************
|
@ -1,7 +1,7 @@
|
|||||||
#******************************************************************************
|
#******************************************************************************
|
||||||
# @(#) check_serviceguard_cluster_status.conf
|
# @(#) check_hpux_sg_cluster_status.conf
|
||||||
#******************************************************************************
|
#******************************************************************************
|
||||||
# This is a configuration file for the check_serviceguard_cluster_status HC plugin.
|
# This is a configuration file for the check_hpux_sg_cluster_status HC plugin.
|
||||||
# All lines starting with a '#' are comment lines.
|
# All lines starting with a '#' are comment lines.
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
# [default: indicates hardcoded script values if no value is defined here]
|
||||||
#******************************************************************************
|
#******************************************************************************
|
20
etc/opt/hc/check_hpux_sg_package_config.conf.dist
Normal file
20
etc/opt/hc/check_hpux_sg_package_config.conf.dist
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
#******************************************************************************
|
||||||
|
# @(#) check_hpux_sg_package_config.conf
|
||||||
|
#******************************************************************************
|
||||||
|
# This is a configuration file for the check_hpux_sg_package_config HC plugin.
|
||||||
|
# All lines starting with a '#' are comment lines.
|
||||||
|
# It is recommended to only monitor unique "param1 value2" combinations
|
||||||
|
#******************************************************************************
|
||||||
|
|
||||||
|
#[mypkg1]
|
||||||
|
#param1 value1
|
||||||
|
#param2 value2
|
||||||
|
|
||||||
|
#[mypkg2]
|
||||||
|
#param1 value1
|
||||||
|
#param2 value2
|
||||||
|
|
||||||
|
|
||||||
|
#******************************************************************************
|
||||||
|
# End of FILE
|
||||||
|
#******************************************************************************
|
@ -1,7 +1,7 @@
|
|||||||
#******************************************************************************
|
#******************************************************************************
|
||||||
# @(#) check_serviceguard_package_status.conf
|
# @(#) check_hpux_sg_package_status.conf
|
||||||
#******************************************************************************
|
#******************************************************************************
|
||||||
# This is a configuration file for the check_serviceguard_package_status HC plugin.
|
# This is a configuration file for the check_hpux_sg_package_status HC plugin.
|
||||||
# All lines starting with a '#' are comment lines.
|
# All lines starting with a '#' are comment lines.
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
# [default: indicates hardcoded script values if no value is defined here]
|
||||||
#******************************************************************************
|
#******************************************************************************
|
@ -1,41 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_hpux_uptime.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_hpux_uptime HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="no"
|
|
||||||
|
|
||||||
# trigger event when current uptime is less than previously record uptime?
|
|
||||||
# [default: yes]
|
|
||||||
check_reboot="yes"
|
|
||||||
|
|
||||||
# time to wait before the current uptime is considered for the reboot check.
|
|
||||||
# Example: a value of 60m means the check for a previous reboot will be at earliest
|
|
||||||
# performed 1 hour after the last reboot of the host.
|
|
||||||
# Format: <value>m|h|d where m=minutes, h=hours, d=days (lowercase suffix).
|
|
||||||
# if no suffix is specified, then minutes are assumed.
|
|
||||||
# [default: 60m]
|
|
||||||
reboot_time="60m"
|
|
||||||
|
|
||||||
# trigger event when current uptime goes over the maximum threshold?
|
|
||||||
# [default: no]
|
|
||||||
check_old_age="no"
|
|
||||||
|
|
||||||
# time to expire before the current uptime is considered "old age".
|
|
||||||
# Example: a value of 365d means a must-reboot will be flagged at earliest after
|
|
||||||
# 1 year of uptime of the host
|
|
||||||
# Format: <value>m|h|d where m=minutes, h=hours, d=days (lowercase suffix).
|
|
||||||
# if no suffix is specified, then minutes are assumed.
|
|
||||||
# [default: 365d]
|
|
||||||
old_age_time="365d"
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,31 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_linux_autofs.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_linux_autofs HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="no"
|
|
||||||
|
|
||||||
# specify whether to fix autofs (if needed)
|
|
||||||
# [default: no]
|
|
||||||
fix_autofs="no"
|
|
||||||
|
|
||||||
# number of times to attempt to restart the autofs daemon
|
|
||||||
# (requires fix_autofs=yes)
|
|
||||||
# [default: 3]
|
|
||||||
retry_start=3
|
|
||||||
|
|
||||||
# number of seconds to sleep between daemon restart attempts
|
|
||||||
# (requires fix_autofs=yes)
|
|
||||||
# [default: 5]
|
|
||||||
sleep_time=5
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,27 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_linux_fail2ban_status.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_linux_fail2ban_status HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="no"
|
|
||||||
|
|
||||||
# specify which type of process check to use
|
|
||||||
# Format: <auto|pgrep|sysv|systemd>. NULL value equals to "auto"
|
|
||||||
# [default: auto]
|
|
||||||
check_type="auto"
|
|
||||||
|
|
||||||
# specify the list jails to status check (comma-separated)
|
|
||||||
# Format: jail1,jail2,jail3,...
|
|
||||||
# [default: none]
|
|
||||||
check_jails=""
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -1,28 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_linux_fetchmail_status.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_linux_fetchmail_status HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="no"
|
|
||||||
|
|
||||||
# specify the regex of error codes that will be used to search the log file_path
|
|
||||||
# [default: error|authfail|lockbusy|ioerr]
|
|
||||||
error_regex="error|authfail|lockbusy|ioerr"
|
|
||||||
|
|
||||||
# specify fetchmail details
|
|
||||||
# Format:
|
|
||||||
# fetchmail:<account>:<rc_file>:<check_log=Yes|No>
|
|
||||||
# Examples:
|
|
||||||
#fetchmail:vmail:/srv/vmail/janedoe/.fetchmailrc:Yes
|
|
||||||
#fetchmail:vmail:/srv/vmail/johndoe/.fetchmailrc:No
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
@ -32,7 +32,7 @@ max_space_usage=90
|
|||||||
# defining a threshold of 0 (zero), then the check will for this give filesystem
|
# defining a threshold of 0 (zero), then the check will for this give filesystem
|
||||||
# will be skipped (this allows for exclusion of filesystems)
|
# will be skipped (this allows for exclusion of filesystems)
|
||||||
# Format:
|
# Format:
|
||||||
# fs:<mount_point>:[<max_inodes_usage_%>]:[<max_space_usage_%]
|
# fs:<mount_point>:[<max_inode_usage_%>]:[<max_space_usage_%]
|
||||||
# Examples:
|
# Examples:
|
||||||
# check myfs1 with a custom inodes + space usage threshold
|
# check myfs1 with a custom inodes + space usage threshold
|
||||||
#fs:myfs1:70:95
|
#fs:myfs1:70:95
|
||||||
|
@ -12,23 +12,18 @@
|
|||||||
log_healthy="no"
|
log_healthy="no"
|
||||||
|
|
||||||
# location of 'hpacucli' tool
|
# location of 'hpacucli' tool
|
||||||
# [default: /usr/sbin/hpacucli]
|
|
||||||
hpacucli_bin="/usr/sbin/hpacucli"
|
hpacucli_bin="/usr/sbin/hpacucli"
|
||||||
|
|
||||||
# controller all show status (0=off, 1=on)
|
# controller all show status (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_acu_controller=1
|
do_acu_controller=1
|
||||||
|
|
||||||
# controller slot=X enclosure all show (0=off, 1=on)
|
# controller slot=X enclosure all show (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_acu_enclosure=1
|
do_acu_enclosure=1
|
||||||
|
|
||||||
# controller slot=X physicaldrive all show status (0=off, 1=on)
|
# controller slot=X physicaldrive all show status (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_acu_physical=1
|
do_acu_physical=1
|
||||||
|
|
||||||
# controller slot=X logicaldrive all show status (0=off, 1=on)
|
# controller slot=X logicaldrive all show status (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_acu_logical=1
|
do_acu_logical=1
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,27 +12,21 @@
|
|||||||
log_healthy="no"
|
log_healthy="no"
|
||||||
|
|
||||||
# location of 'hpasmcli' tool
|
# location of 'hpasmcli' tool
|
||||||
# [default: /sbin/hpasmcli]
|
|
||||||
hpasmcli_bin="/sbin/hpasmcli"
|
hpasmcli_bin="/sbin/hpasmcli"
|
||||||
|
|
||||||
# SHOW FANS (0=off, 1=on)
|
# SHOW FANS (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_asm_fans=1
|
do_asm_fans=1
|
||||||
|
|
||||||
# SHOW DIMM (0=off, 1=on)
|
# SHOW DIMM (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_asm_dimm=1
|
do_asm_dimm=1
|
||||||
|
|
||||||
# SHOW POWERSUPPLY (0=off, 1=on)
|
# SHOW POWERSUPPLY (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_asm_powersupply=1
|
do_asm_powersupply=1
|
||||||
|
|
||||||
# SHOW SERVER (0=off, 1=on)
|
# SHOW SERVER (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_asm_server=1
|
do_asm_server=1
|
||||||
|
|
||||||
# SHOW TEMPERATURE (0=off, 1=on)
|
# SHOW TEMPERATURE (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_asm_temperature=1
|
do_asm_temperature=1
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
log_healthy="no"
|
log_healthy="no"
|
||||||
|
|
||||||
# location of 'hpacucli' tool
|
# location of 'hpacucli' tool
|
||||||
# [default: /sbin/hplog]
|
|
||||||
hplog_bin="/sbin/hplog"
|
hplog_bin="/sbin/hplog"
|
||||||
|
|
||||||
# comma-separated list of severities to search for (case insensitive)
|
# comma-separated list of severities to search for (case insensitive)
|
||||||
|
@ -12,23 +12,18 @@
|
|||||||
log_healthy="no"
|
log_healthy="no"
|
||||||
|
|
||||||
# location of 'hpssacli' tool
|
# location of 'hpssacli' tool
|
||||||
# [default: /usr/sbin/hpssacli]
|
|
||||||
hpssacli_bin="/usr/sbin/hpssacli"
|
hpssacli_bin="/usr/sbin/hpssacli"
|
||||||
|
|
||||||
# controller all show status (0=off, 1=on)
|
# controller all show status (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_ssa_controller=1
|
do_ssa_controller=1
|
||||||
|
|
||||||
# controller slot=X enclosure all show (0=off, 1=on)
|
# controller slot=X enclosure all show (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_ssa_enclosure=1
|
do_ssa_enclosure=1
|
||||||
|
|
||||||
# controller slot=X physicaldrive all show status (0=off, 1=on)
|
# controller slot=X physicaldrive all show status (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_ssa_physical=1
|
do_ssa_physical=1
|
||||||
|
|
||||||
# controller slot=X logicaldrive all show status (0=off, 1=on)
|
# controller slot=X logicaldrive all show status (0=off, 1=on) [default: 1]
|
||||||
# [default: 1]
|
|
||||||
do_ssa_logical=1
|
do_ssa_logical=1
|
||||||
|
|
||||||
#******************************************************************************
|
#******************************************************************************
|
||||||
|
@ -1,34 +0,0 @@
|
|||||||
#******************************************************************************
|
|
||||||
# @(#) check_linux_httpd_status.conf
|
|
||||||
#******************************************************************************
|
|
||||||
# This is a configuration file for the check_linux_httpd_status HC plugin.
|
|
||||||
# All lines starting with a '#' are comment lines.
|
|
||||||
# [default: indicates hardcoded script values if no value is defined here]
|
|
||||||
#******************************************************************************
|
|
||||||
|
|
||||||
# specify whether to also log passed health checks
|
|
||||||
# (warning: this may rapidly grow the HC log)
|
|
||||||
# [default: no]
|
|
||||||
log_healthy="no"
|
|
||||||
|
|
||||||
# specify which type of process check to use
|
|
||||||
# Format: <auto|pgrep|sysv|systemd>. NULL value equals to "auto"
|
|
||||||
# [default: auto]
|
|
||||||
# [release >20191101]
|
|
||||||
check_type="auto"
|
|
||||||
|
|
||||||
# specify name of the httpd binary
|
|
||||||
# Format: httpd|apache|apache2
|
|
||||||
# [default: httpd]
|
|
||||||
# [release >20201010]
|
|
||||||
httpd_bin="httpd"
|
|
||||||
|
|
||||||
# specify custom path to the httpd binary
|
|
||||||
# [default: null]
|
|
||||||
# [release >20201010]
|
|
||||||
httpd_path=""
|
|
||||||
|
|
||||||
|
|
||||||
#******************************************************************************
|
|
||||||
# End of FILE
|
|
||||||
#******************************************************************************
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user