[arch-commits] Commit in lm_sensors/repos (6 files)

Felix Yan felixonmars at archlinux.org
Sat May 16 12:09:32 UTC 2020


    Date: Saturday, May 16, 2020 @ 12:09:32
  Author: felixonmars
Revision: 384441

archrelease: copy trunk to staging-x86_64

Added:
  lm_sensors/repos/staging-x86_64/
  lm_sensors/repos/staging-x86_64/PKGBUILD
    (from rev 384440, lm_sensors/trunk/PKGBUILD)
  lm_sensors/repos/staging-x86_64/healthd
    (from rev 384440, lm_sensors/trunk/healthd)
  lm_sensors/repos/staging-x86_64/healthd.conf
    (from rev 384440, lm_sensors/trunk/healthd.conf)
  lm_sensors/repos/staging-x86_64/healthd.service
    (from rev 384440, lm_sensors/trunk/healthd.service)
  lm_sensors/repos/staging-x86_64/sensord.conf
    (from rev 384440, lm_sensors/trunk/sensord.conf)

-----------------+
 PKGBUILD        |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 healthd         |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 healthd.conf    |   17 +++++++++++++++++
 healthd.service |    9 +++++++++
 sensord.conf    |    9 +++++++++
 5 files changed, 136 insertions(+)

Copied: lm_sensors/repos/staging-x86_64/PKGBUILD (from rev 384440, lm_sensors/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2020-05-16 12:09:32 UTC (rev 384441)
@@ -0,0 +1,48 @@
+# Maintainer: Laurent Carlier <lordheavym at gmail.com>
+# Contributor: Eric Bélanger
+
+pkgname=lm_sensors
+pkgver=3.6.0
+_pkgver=${pkgver//./-}
+pkgrel=2
+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=(https://github.com/lm-sensors/lm-sensors/archive/V${_pkgver}.tar.gz
+	healthd healthd.conf healthd.service sensord.conf)
+sha256sums=('0591f9fa0339f0d15e75326d0365871c2d4e2ed8aa1ff759b3a55d3734b7d197'
+            '0ac9afb2a9155dd74ab393756ed552cd542dde1081149beb2ab4ec7ff55b8f4a'
+            '5d17a366b175cf9cb4bb0115c030d4b8d91231546f713784a74935b6e533da9f'
+            '2638cd363e60f8d36bcac468f414a6ba29a1b5599f40fc651ca953858c8429d7'
+            '23bebef4c250f8c0aaba2c75fd3d2c8ee9473cc91a342161a9f5b3a34ddfa9e5')
+validpgpkeys=('7CA69F4460F1BDC41FD2C858A5526B9BB3CD4E6A')
+
+prepare() {
+  cd "${srcdir}/lm-sensors-${_pkgver}"
+  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-${_pkgver}"
+  make PREFIX=/usr
+}
+
+package() {
+  cd "${srcdir}/lm-sensors-${_pkgver}"
+  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/staging-x86_64/healthd (from rev 384440, lm_sensors/trunk/healthd)
===================================================================
--- staging-x86_64/healthd	                        (rev 0)
+++ staging-x86_64/healthd	2020-05-16 12:09:32 UTC (rev 384441)
@@ -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/staging-x86_64/healthd.conf (from rev 384440, lm_sensors/trunk/healthd.conf)
===================================================================
--- staging-x86_64/healthd.conf	                        (rev 0)
+++ staging-x86_64/healthd.conf	2020-05-16 12:09:32 UTC (rev 384441)
@@ -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/staging-x86_64/healthd.service (from rev 384440, lm_sensors/trunk/healthd.service)
===================================================================
--- staging-x86_64/healthd.service	                        (rev 0)
+++ staging-x86_64/healthd.service	2020-05-16 12:09:32 UTC (rev 384441)
@@ -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/staging-x86_64/sensord.conf (from rev 384440, lm_sensors/trunk/sensord.conf)
===================================================================
--- staging-x86_64/sensord.conf	                        (rev 0)
+++ staging-x86_64/sensord.conf	2020-05-16 12:09:32 UTC (rev 384441)
@@ -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