Inital
This commit is contained in:
commit
07ed3bfbea
11
PKGBUILD
Normal file
11
PKGBUILD
Normal 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
10
slurmResume
Executable 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
9
slurmSuspend
Executable 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
|
Loading…
x
Reference in New Issue
Block a user