alice-wol/DEBIAN/postinst

6 lines
165 B
Bash
Executable File

#!/bin/sh
# Script executado pós instalação
interface=$(ip -o -4 route show to default | awk '{print $5}')
systemctl enable --now wol@$interface.service
return 0