diff --git a/cmd/inotify/inotify.go b/cmd/inotify/inotify.go index 686cad6..3401c35 100644 --- a/cmd/inotify/inotify.go +++ b/cmd/inotify/inotify.go @@ -17,9 +17,9 @@ const ( ) func main() { - // Create watchdog timer that restarts fim.service on timeout + // Create watchdog timer that restarts pf-ui.service on timeout watchdog := watchdog.New(TIMEOUT, func() { - err := exec.Command(CMD_SYSTEMCTL, "restart", "fim.service").Run() + err := exec.Command(CMD_SYSTEMCTL, "restart", "pf-ui.service").Run() if err != nil { log.Fatalf("Error running %s : %s", CMD_SYSTEMCTL, err) }