alice-wol/DEBIAN/postinst

10 lines
243 B
Plaintext
Raw Normal View History

2024-09-09 20:30:22 -03:00
#!/bin/sh
2024-09-09 21:33:44 -03:00
set -e
2024-09-09 21:30:43 -03:00
2024-09-09 20:41:11 -03:00
interface=$(ip -o -4 route show to default | awk '{print $5}')
2024-09-09 21:33:44 -03:00
# Install and start the systemd service
if ! systemctl enable --now wol@$interface.service; then
echo "Warning: Failed to start your-service.service" >&2
fi