Add ARCH build files
This commit is contained in:
parent
7fb7f97d6d
commit
9d92e0ada7
89
build/linux/ARCH/hc-linux/.install
Normal file
89
build/linux/ARCH/hc-linux/.install
Normal file
@ -0,0 +1,89 @@
|
||||
# -- post-install --
|
||||
post_install() {
|
||||
# ------------------------- CONFIGURATION starts here -------------------------
|
||||
# location of the HC scripts
|
||||
HC_DIR="/opt/hc"
|
||||
# location of the HC configuration files
|
||||
HC_ETC_DIR="/etc/opt/hc"
|
||||
# location of the HC log/state files
|
||||
HC_VAR_DIR="/var/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 configuration files
|
||||
if [[ ! -f ${HC_ETC_DIR}/core/check_health.conf ]]
|
||||
then
|
||||
# copy main configuration file
|
||||
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
|
||||
}
|
||||
fi
|
||||
if [[ ! -f ${HC_ETC_DIR}/check_host.conf ]]
|
||||
then
|
||||
# copy host check configuration file
|
||||
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
|
||||
}
|
||||
fi
|
||||
# refresh symbolic FPATH links for core includes & plugins
|
||||
if [[ -x ${HC_BIN} ]]
|
||||
then
|
||||
${HC_BIN} --fix-symlinks || echo "WARN: updating symlinks failed"
|
||||
else
|
||||
echo "ERROR: could not locate or excute the HC main script (${HC_BIN})"
|
||||
fi
|
||||
echo "INFO: finished post-install script"
|
||||
}
|
||||
|
||||
# -- post-install --
|
||||
post_install() {
|
||||
# ------------------------- CONFIGURATION starts here -------------------------
|
||||
# location of the HC scripts
|
||||
HC_DIR="/opt/hc"
|
||||
# location of the HC configuration files
|
||||
HC_ETC_DIR="/etc/opt/hc"
|
||||
# location of the HC log/state files
|
||||
HC_VAR_DIR="/var/opt/hc"
|
||||
# ------------------------- CONFIGURATION ends here ---------------------------
|
||||
# update or uninstall?
|
||||
if (( $1 == 0 ))
|
||||
then
|
||||
echo "INFO: starting post-uninstall script ..."
|
||||
if [[ -d ${HC_DIR} ]]
|
||||
then
|
||||
rm -rf ${HC_DIR} 2>/dev/null
|
||||
(( $? == 0 )) || echo "WARN: failed to remove ${HC_DIR}"
|
||||
fi
|
||||
if [[ -d ${HC_ETC_DIR} ]]
|
||||
then
|
||||
rm -rf ${HC_ETC_DIR}/*.dist >/dev/null
|
||||
(( $? == 0 )) || echo "WARN: could not remove .dist files in directory ${HC_ETC_DIR}"
|
||||
fi
|
||||
if [[ -d ${HC_ETC_DIR}/core ]]
|
||||
then
|
||||
rm -rf ${HC_ETC_DIR}/core/*.dist >/dev/null
|
||||
(( $? == 0 )) || echo "WARN: could not remove .dist files in directory ${HC_ETC_DIR}/core"
|
||||
fi
|
||||
if [[ -d ${HC_ETC_DIR}/core/providers ]]
|
||||
then
|
||||
rm -rf ${HC_ETC_DIR}/core/providers/*.dist >/dev/null
|
||||
(( $? == 0 )) || echo "WARN: could not remove .dist files in directory ${HC_ETC_DIR}/core/providers"
|
||||
fi
|
||||
if [[ -d ${HC_VAR_DIR} ]]
|
||||
then
|
||||
rm -rf ${HC_VAR_DIR}/state/temporary 2>/dev/null
|
||||
(( $? == 0 )) || echo "WARN: failed to remove ${HC_VAR_DIR}/state/temporary"
|
||||
fi
|
||||
echo "INFO: finished post-uninstall script"
|
||||
else
|
||||
echo "INFO: skipping post-uninstall script (RPM upgrade)"
|
||||
fi
|
||||
}
|
39
build/linux/ARCH/hc-linux/PKGBUILD
Normal file
39
build/linux/ARCH/hc-linux/PKGBUILD
Normal file
@ -0,0 +1,39 @@
|
||||
_pkgname="check_health"
|
||||
pkgname="hc-linux"
|
||||
pkgver="%BUILD_DATE%"
|
||||
pkgrel=1
|
||||
pkgdesc="The KUDOS Health Checker (HC) for UNIX"
|
||||
arch=("any")
|
||||
url="https://github.com/patvdv/${_pkgname}"
|
||||
license=('GPL3')
|
||||
makedepends=('git')
|
||||
source=("${_pkgname}::git+${url}.git#branch=master")
|
||||
install=".install"
|
||||
sha256sums=('SKIP')
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${_pkgname}"
|
||||
install -d -m 755 ${pkgdir}/opt/hc
|
||||
install -d -m 755 ${pkgdir}/opt/hc/bin
|
||||
install -Dm 755 opt/hc/bin/check_health.sh ${pkgdir}/opt/hc/bin
|
||||
install -d -m 755 ${pkgdir}/opt/hc/lib
|
||||
install -d -m 755 ${pkgdir}/opt/hc/lib/core
|
||||
install -Dm 755 opt/hc/lib/core/include_core.sh ${pkgdir}/opt/hc/lib/core
|
||||
install -Dm 755 opt/hc/lib/core/include_data.sh ${pkgdir}/opt/hc/lib/core
|
||||
install -Dm 755 opt/hc/lib/core/include_os.sh ${pkgdir}/opt/hc/lib/core
|
||||
install -Dm 755 opt/hc/lib/core/notify_mail.sh ${pkgdir}/opt/hc/lib/core
|
||||
install -Dm 755 opt/hc/lib/core/report_std.sh ${pkgdir}/opt/hc/lib/core
|
||||
install -d -m 755 ${pkgdir}/etc/opt/hc
|
||||
install -Dm 644 etc/opt/hc/check_host.conf.dist ${pkgdir}/etc/opt/hc
|
||||
install -d -m 755 ${pkgdir}/etc/opt/hc/core
|
||||
install -Dm 644 etc/opt/hc/core/check_health.conf.dist ${pkgdir}/etc/opt/hc/core
|
||||
install -d -m 755 ${pkgdir}/etc/opt/hc/core/providers
|
||||
install -d -m 755 ${pkgdir}/etc/opt/hc/core/templates
|
||||
install -Dm 644 etc/opt/hc/core/templates/mail_info.tpl ${pkgdir}/etc/opt/hc/core/templates
|
||||
install -Dm 644 etc/opt/hc/core/templates/mail_header.tpl ${pkgdir}/etc/opt/hc/core/templates
|
||||
install -Dm 644 etc/opt/hc/core/templates/mail_body.tpl ${pkgdir}/etc/opt/hc/core/templates
|
||||
install -Dm 644 etc/opt/hc/core/templates/mail_footer.tpl ${pkgdir}/etc/opt/hc/core/templates
|
||||
install -d -m 755 ${pkgdir}/var/opt/hc
|
||||
install -d -m 755 ${pkgdir}/etc/logrotate.d
|
||||
install -Dm 644 etc/logrotate.d/check_health ${pkgdir}/etc/logrotate.d/check_health
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user