wol fix and refactor

This commit is contained in:
mwiegand 2022-04-02 19:30:59 +02:00
parent 8a6c166f16
commit b528e9b94b
5 changed files with 44 additions and 22 deletions

9
bin/wake Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env python3
from bundlewrap.repo import Repository
from os.path import realpath, dirname
from sys import argv
repo = Repository(dirname(dirname(realpath(__file__))))
repo.libs.wol.wake(repo.get_node(argv[1]))

View file

@ -30,6 +30,7 @@ def systemd(metadata):
'Service': { 'Service': {
'User': config.get('user', 'root'), 'User': config.get('user', 'root'),
'ExecStart': config['command'], 'ExecStart': config['command'],
'Environment': config.get('env'),
}, },
}, },
}) })

View file

@ -1,19 +1,30 @@
#!/bin/bash #!/bin/bash
WOKE=$(expr $(journalctl -t systemd-sleep -b 0 -o json MESSAGE="System resumed." -n1 | jq -r .__REALTIME_TIMESTAMP) / 1000000) # CHECK UPTIME
NOW=$(date +%s)
UPTIME=$(expr $NOW - $WOKE) RESUMED_TIMESTAMP_MICRO=$(journalctl -t systemd-sleep -b 0 -o json MESSAGE="System resumed." -n1 | jq -r .__REALTIME_TIMESTAMP)
if [[ -z "$RESUMED_TIMESTAMP_MICRO" ]]
then
UPTIME=$(cat /proc/uptime | cut -d' ' -f1 | cut -d'.' -f1)
else
RESUMED_TIMESTAMP=$(expr $RESUMED_TIMESTAMP_MICRO / 1000000)
NOW_TIMESTAMP=$(date +%s)
UPTIME=$(expr $NOW_TIMESTAMP - $RESUMED_TIMESTAMP)
fi
MIN_UPTIME=$(expr 60 \* 15) MIN_UPTIME=$(expr 60 \* 15)
if [[ "$UPTIME" -lt "$MIN_UPTIME" ]] if [[ "$UPTIME" -lt "$MIN_UPTIME" ]]
then then
echo "ABORT: uptime ($UPTIME s) lower than minimum ($MIN_UPTIME s)" echo "ABORT: uptime of ${UPTIME}s is lower than minimum of ${MIN_UPTIME}s"
exit 0 exit 0
fi fi
MY_SERVICE="$2" # CHECK FOR RUNNING TIMERS
for SERVICE in $(systemctl list-timers --no-pager --no-legend --state active -o json | jq -r '.[] | .activates') for SERVICE in $(systemctl list-timers --no-pager --no-legend --state active -o json | jq -r '.[] | .activates')
do do
if [[ "$SERVICE" = "$MY_SERVICE" ]] if [[ "$SERVICE" = "$THIS_SERVICE" ]]
then then
continue continue
elif systemctl is-active "$SERVICE" --quiet elif systemctl is-active "$SERVICE" --quiet
@ -23,18 +34,22 @@ do
fi fi
done done
LOGINS=$(netstat -tnpa | grep 'ESTABLISHED.*sshd' | wc -l) # CHECK FOR ACTIVE LOGINS
if [[ "$LOGINS" -gt 0 ]]
LOGINS=$(netstat -tnpa | grep 'ESTABLISHED.*sshd' | tr -s ' ' | cut -d' ' -f5,7-8 | paste -d',' -s | sed 's/,/, /')
if ! [[ -z "$LOGINS" ]]
then then
echo "ABORT: $LOGINS user logins" echo "ABORT: users logged in: $LOGINS"
exit 0 exit 0
fi fi
if [[ "$1" = now ]] # SUSPEND!
if [[ "$1" = check ]]
then then
echo "WOULD SESPEND"
else
echo "SESPENDING" echo "SESPENDING"
sleep 60 sleep 60
systemctl suspend systemctl suspend
else
echo "WOULD SESPEND"
fi fi

View file

@ -3,7 +3,7 @@ if not waker_node.has_bundle('wol-waker'):
raise Exception(f'waker node {waker_node.name} does not have bundle wol-waker') raise Exception(f'waker node {waker_node.name} does not have bundle wol-waker')
files = { files = {
'/opt/suspend_if_idle': { '/usr/local/bin/suspend_if_idle': {
'mode': '550', 'mode': '550',
}, },
} }

View file

@ -5,6 +5,7 @@ defaults = {
'apt': { 'apt': {
'packages': { 'packages': {
'jq': {}, 'jq': {},
'ethtool': {},
}, },
}, },
} }
@ -14,12 +15,14 @@ defaults = {
'systemd-timers/suspend-if-idle', 'systemd-timers/suspend-if-idle',
) )
def timer(metadata): def timer(metadata):
name = 'suspend-if-idle'#
return { return {
'systemd-timers': { 'systemd-timers': {
name: { 'suspend-if-idle': {
'command': f'/opt/suspend_if_idle now {name}.service', 'command': f'suspend_if_idle',
'when': 'minutely', 'when': 'minutely',
'env': {
'THIS_SERVICE': 'suspend-if-idle.service',
},
}, },
}, },
} }
@ -41,7 +44,6 @@ def wake_command(metadata):
@metadata_reactor.provides( @metadata_reactor.provides(
'apt/packages/ethtool',
'systemd/units/enable-wol.service', 'systemd/units/enable-wol.service',
'systemd/services/enable-wol.service', 'systemd/services/enable-wol.service',
) )
@ -49,11 +51,6 @@ def systemd(metadata):
interface = metadata.get(f"network/{metadata.get('wol-sleeper/network')}/interface") interface = metadata.get(f"network/{metadata.get('wol-sleeper/network')}/interface")
return { return {
'apt': {
'packages': {
'ethtool': {},
},
},
'systemd': { 'systemd': {
'units': { 'units': {
'enable-wol.service': { 'enable-wol.service': {