[arch-commits] Commit in lm_sensors/repos (6 files)
Laurent Carlier
lcarlier at archlinux.org
Wed Aug 1 12:14:05 UTC 2018
Date: Wednesday, August 1, 2018 @ 12:14:05
Author: lcarlier
Revision: 330221
archrelease: copy trunk to testing-x86_64
Added:
lm_sensors/repos/testing-x86_64/
lm_sensors/repos/testing-x86_64/PKGBUILD
(from rev 330220, lm_sensors/trunk/PKGBUILD)
lm_sensors/repos/testing-x86_64/healthd
(from rev 330220, lm_sensors/trunk/healthd)
lm_sensors/repos/testing-x86_64/healthd.conf
(from rev 330220, lm_sensors/trunk/healthd.conf)
lm_sensors/repos/testing-x86_64/healthd.service
(from rev 330220, lm_sensors/trunk/healthd.service)
lm_sensors/repos/testing-x86_64/sensord.conf
(from rev 330220, lm_sensors/trunk/sensord.conf)
-----------------+
PKGBUILD | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
healthd | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
healthd.conf | 17 +++++++++++++++++
healthd.service | 9 +++++++++
sensord.conf | 9 +++++++++
5 files changed, 141 insertions(+)
Copied: lm_sensors/repos/testing-x86_64/PKGBUILD (from rev 330220, lm_sensors/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-08-01 12:14:05 UTC (rev 330221)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Eric Bélanger <eric at archlinux.org>
+
+pkgname=lm_sensors
+pkgver=3.4.0+5176+dcf23676
+pkgrel=1
+pkgdesc="Collection of user space tools for general SMBus access and hardware monitoring"
+arch=('x86_64')
+url="https://hwmon.wiki.kernel.org/lm_sensors"
+license=('GPL' 'LGPL')
+depends=('perl')
+makedepends=('rrdtool' 'git')
+optdepends=('rrdtool: for logging with sensord')
+backup=('etc/sensors3.conf' 'etc/healthd.conf' 'etc/conf.d/sensord')
+source=("git+https://github.com/groeck/lm-sensors.git#commit=dcf23676cc264927ad58ae7960f518689372741a"
+ healthd healthd.conf healthd.service sensord.conf)
+sha256sums=('SKIP'
+ '0ac9afb2a9155dd74ab393756ed552cd542dde1081149beb2ab4ec7ff55b8f4a'
+ '5d17a366b175cf9cb4bb0115c030d4b8d91231546f713784a74935b6e533da9f'
+ '2638cd363e60f8d36bcac468f414a6ba29a1b5599f40fc651ca953858c8429d7'
+ '23bebef4c250f8c0aaba2c75fd3d2c8ee9473cc91a342161a9f5b3a34ddfa9e5')
+validpgpkeys=('7CA69F4460F1BDC41FD2C858A5526B9BB3CD4E6A')
+
+pkgver() {
+ cd "${srcdir}/lm-sensors"
+
+ echo 3.4.0+$(git rev-list --count HEAD)+$(git rev-parse --short HEAD)
+}
+
+prepare() {
+ cd "${srcdir}/lm-sensors"
+ sed -i 's|/etc/sysconfig|/etc/conf.d|' prog/{detect/sensors-detect,init/{sensord,lm_sensors}.service}
+ sed -i 's/EnvironmentFile=/EnvironmentFile=-/' prog/init/lm_sensors.service
+}
+
+build() {
+ cd "${srcdir}/lm-sensors"
+ make PREFIX=/usr
+}
+
+package() {
+ cd "${srcdir}/lm-sensors"
+ make PROG_EXTRA=sensord BUILD_STATIC_LIB=0 \
+ PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man DESTDIR="${pkgdir}" install
+
+ install -D -m755 "${srcdir}/healthd" "${pkgdir}/usr/bin/healthd"
+
+ install -D -m644 "${srcdir}/healthd.conf" "${pkgdir}/etc/healthd.conf"
+ install -D -m644 "${srcdir}/sensord.conf" "${pkgdir}/etc/conf.d/sensord"
+
+ install -D -m644 "${srcdir}/healthd.service" "${pkgdir}/usr/lib/systemd/system/healthd.service"
+ install -D -m644 prog/init/*.service "${pkgdir}/usr/lib/systemd/system/"
+}
Copied: lm_sensors/repos/testing-x86_64/healthd (from rev 330220, lm_sensors/trunk/healthd)
===================================================================
--- testing-x86_64/healthd (rev 0)
+++ testing-x86_64/healthd 2018-08-01 12:14:05 UTC (rev 330221)
@@ -0,0 +1,53 @@
+#!/bin/bash
+
+#
+# /usr/bin/healthd
+#
+
+. /etc/healthd.conf
+
+cmd="${ALARM_CMD}"
+addr="${ADMIN_EMAIL}"
+slp="${ALARM_SLEEP}"
+sensors="/usr/bin/sensors"
+
+
+while [ $# -gt 0 ] ; do
+ case "${1}" in
+ -c ) cmd="${2}" ; shift 2 ;;
+ -m ) addr="${2}" ; shift 2 ;;
+ -s ) slp="${2}" ; shift 2 ;;
+ * ) shift 1 ;;
+ esac
+done
+
+case "${ALARM_RESET}" in
+ yes) /usr/bin/sensors > /dev/null
+ ;;
+ no) true
+ ;;
+esac
+
+[ -n "${cmd}" ] && [ -n "$( which -- "${cmd%% *}" )" ] || \
+ [ -n "${addr}" ] || exit 1
+
+[ "${slp}" -ge 2 ] || slp=600
+
+while true ; do
+ sleep 15
+ message="$( $sensors )"
+ case "$message" in
+ '' ) message='Could not get any sensor values !' ;;
+ *ALARM* ) : ;;
+ * ) message='' ;;
+ esac
+ if [ -n "$message" ]; then
+ if [ -n "${addr}" ]; then
+ echo "$message" | mail -s \
+ "Sensors ALARM detected at host: $( hostname )" \
+ "${addr}"
+ fi
+ [ -z "${cmd}" ] || ${cmd} &
+ sleep ${slp}
+ fi
+done &
Copied: lm_sensors/repos/testing-x86_64/healthd.conf (from rev 330220, lm_sensors/trunk/healthd.conf)
===================================================================
--- testing-x86_64/healthd.conf (rev 0)
+++ testing-x86_64/healthd.conf 2018-08-01 12:14:05 UTC (rev 330221)
@@ -0,0 +1,17 @@
+#
+# /etc/healthd.conf
+#
+
+# reset any pending alarms on startup
+ALARM_RESET="yes"
+
+# where to sent mails on alarm
+ADMIN_EMAIL="root"
+
+# Seconds to sleep when alarm detected before checking again
+# If you want to fill up your mail inbox set this to 2. ;-)
+ALARM_SLEEP=600
+
+# command to run in background on each alarm
+# N.B.: If you choose to use the beep command, you'll need to install it: pacman -S beep
+ALARM_CMD="beep -f 800 -l 500 -d 500 -r 600"
Copied: lm_sensors/repos/testing-x86_64/healthd.service (from rev 330220, lm_sensors/trunk/healthd.service)
===================================================================
--- testing-x86_64/healthd.service (rev 0)
+++ testing-x86_64/healthd.service 2018-08-01 12:14:05 UTC (rev 330221)
@@ -0,0 +1,9 @@
+[Unit]
+Description=A daemon which can be used to alert you in the event of a hardware health monitoring alarm
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/healthd
+
+[Install]
+WantedBy=multi-user.target
Copied: lm_sensors/repos/testing-x86_64/sensord.conf (from rev 330220, lm_sensors/trunk/sensord.conf)
===================================================================
--- testing-x86_64/sensord.conf (rev 0)
+++ testing-x86_64/sensord.conf 2018-08-01 12:14:05 UTC (rev 330221)
@@ -0,0 +1,9 @@
+#
+# /etc/conf.d/sensord
+#
+
+#Specify the interval between scanning for sensor alarms
+INTERVAL=60s
+
+#Specify the interval between logging all sensor readings
+LOG_INTERVAL=30m
More information about the arch-commits
mailing list