improve wake on lan
This commit is contained in:
parent
9ff8dce802
commit
8a13421577
3 changed files with 31 additions and 9 deletions
|
@ -37,6 +37,8 @@ def systemd(metadata):
|
||||||
})
|
})
|
||||||
if config.get('working_dir'):
|
if config.get('working_dir'):
|
||||||
units[f'{name}.service']['Service']['WorkingDirectory'] = config['working_dir']
|
units[f'{name}.service']['Service']['WorkingDirectory'] = config['working_dir']
|
||||||
|
if config.get('success_exit_status'):
|
||||||
|
units[f'{name}.service']['Service']['SuccessExitStatus'] = config['success_exit_status']
|
||||||
|
|
||||||
services[f'{name}.timer'] = {}
|
services[f'{name}.timer'] = {}
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ MIN_UPTIME=$(expr 60 \* 15)
|
||||||
if [[ "$UPTIME" -lt "$MIN_UPTIME" ]]
|
if [[ "$UPTIME" -lt "$MIN_UPTIME" ]]
|
||||||
then
|
then
|
||||||
echo "ABORT: uptime of ${UPTIME}s is lower than minimum of ${MIN_UPTIME}s"
|
echo "ABORT: uptime of ${UPTIME}s is lower than minimum of ${MIN_UPTIME}s"
|
||||||
exit 0
|
exit 75
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# CHECK FOR RUNNING TIMERS
|
# CHECK FOR RUNNING TIMERS
|
||||||
|
@ -30,7 +30,7 @@ do
|
||||||
elif systemctl is-active "$SERVICE" --quiet
|
elif systemctl is-active "$SERVICE" --quiet
|
||||||
then
|
then
|
||||||
echo "ABORT: service $SERVICE is running by timer"
|
echo "ABORT: service $SERVICE is running by timer"
|
||||||
exit 0
|
exit 75
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ LOGINS=$(netstat -tnpa | grep 'ESTABLISHED.*sshd' | tr -s ' ' | cut -d' ' -f5,7-
|
||||||
if ! [[ -z "$LOGINS" ]]
|
if ! [[ -z "$LOGINS" ]]
|
||||||
then
|
then
|
||||||
echo "ABORT: users logged in: $LOGINS"
|
echo "ABORT: users logged in: $LOGINS"
|
||||||
exit 0
|
exit 75
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# SUSPEND!
|
# SUSPEND!
|
||||||
|
@ -48,8 +48,26 @@ fi
|
||||||
if [[ "$1" = check ]]
|
if [[ "$1" = check ]]
|
||||||
then
|
then
|
||||||
echo "WOULD SESPEND"
|
echo "WOULD SESPEND"
|
||||||
|
exit 0
|
||||||
else
|
else
|
||||||
echo "SESPENDING"
|
echo "SESPENDING AFTER TIMEOUT"
|
||||||
sleep 60
|
|
||||||
systemctl suspend
|
for i in 1 2 3 4 5 6
|
||||||
|
do
|
||||||
|
echo "TIMEOUT ${i} success"
|
||||||
|
sleep 10
|
||||||
|
|
||||||
|
# check if condition is still met
|
||||||
|
if "$0" check
|
||||||
|
then
|
||||||
|
continue
|
||||||
|
else
|
||||||
|
echo "SESPENSION ABORTED"
|
||||||
|
exit 75
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "SESPENDING"
|
||||||
|
systemctl suspend
|
||||||
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -6,6 +6,7 @@ defaults = {
|
||||||
'packages': {
|
'packages': {
|
||||||
'jq': {},
|
'jq': {},
|
||||||
'ethtool': {},
|
'ethtool': {},
|
||||||
|
'net-tools': {},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -20,6 +21,7 @@ def timer(metadata):
|
||||||
'suspend-if-idle': {
|
'suspend-if-idle': {
|
||||||
'command': f'suspend_if_idle',
|
'command': f'suspend_if_idle',
|
||||||
'when': 'minutely',
|
'when': 'minutely',
|
||||||
|
'success_exit_status': '75',
|
||||||
'env': {
|
'env': {
|
||||||
'THIS_SERVICE': 'suspend-if-idle.service',
|
'THIS_SERVICE': 'suspend-if-idle.service',
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue