This commit is contained in:
Lukáš Plevač 2024-12-08 18:00:07 +01:00
commit 07ed3bfbea
3 changed files with 30 additions and 0 deletions

11
PKGBUILD Normal file
View File

@ -0,0 +1,11 @@
pkgname=saturn-power
pkgver=1.1
pkgrel=1
arch=('any')
source=('slurmResume' 'slurmSuspend')
md5sums=('SKIP' 'SKIP')
package() {
install -D -t "${pkgdir}/usr/bin" "$srcdir/slurmResume"
install -D -t "${pkgdir}/usr/bin" "$srcdir/slurmSuspend"
}

10
slurmResume Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
hosts=$(scontrol show hostnames "$1")
logfile=/var/log/power_save.log
echo "$(date) Resume invoked $0 $*" >>$logfile
for host in $hosts
do
hostMac=$(saturnDiscover lookup hostmac $host)
sudo wol $hostMac
done
exit 0

9
slurmSuspend Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
hosts=$(scontrol show hostnames "$1")
logfile=/var/log/power_save.log
echo "$(date) Suspend invoked $0 $*" >>$logfile
for host in $hosts
do
sudo ssh -i /root/.ssh/maintenance -o "UserKnownHostsFile=/dev/null" -o "StrictHostKeyChecking=no" -t maintenance@$host "sudo /sbin/shutdown"
done
exit 0