From 685a3035cbf8c49c2d705a487ae6b068faf94882 Mon Sep 17 00:00:00 2001 From: Carneiro Date: Mon, 9 Sep 2024 21:30:43 -0300 Subject: [PATCH] Update DEBIAN/postinst --- DEBIAN/postinst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/DEBIAN/postinst b/DEBIAN/postinst index deae26d..1603ed4 100755 --- a/DEBIAN/postinst +++ b/DEBIAN/postinst @@ -1,6 +1,7 @@ #!/bin/sh +set +e + # 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 \ No newline at end of file +systemctl enable --now wol@$interface.service \ No newline at end of file