alice-wol/DEBIAN/postinst

10 lines
239 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
2024-09-11 14:20:18 -03:00
if ! systemctl enable wol@${interface}.service; then
2024-09-09 21:33:44 -03:00
echo "Warning: Failed to start your-service.service" >&2
fi