From beba034c172829151a57c6cf6f89ecb7af6271a7 Mon Sep 17 00:00:00 2001 From: Schrottkatze Date: Fri, 1 Mar 2024 18:22:58 +0100 Subject: [PATCH] try dispatcher script fix try one --- other/scripts/dispatcher.nu | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/other/scripts/dispatcher.nu b/other/scripts/dispatcher.nu index 466732d..6416f50 100755 --- a/other/scripts/dispatcher.nu +++ b/other/scripts/dispatcher.nu @@ -14,6 +14,8 @@ def main [ systemd-cat echo $"($currentnet) \(($interface)): ($type)"; if $interface starts-with 'wlp' { - ^$"/etc/networkhooks/($currentnet).nu" $interface $type + let p = $"/etc/networkhooks/($currentnet).nu"; + systemd-cat echo $p; + ^$p $interface $type } }