diff options
-rw-r--r-- | battering/services/opensnitch.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/battering/services/opensnitch.scm b/battering/services/opensnitch.scm index 70164ea..84ea4a0 100644 --- a/battering/services/opensnitch.scm +++ b/battering/services/opensnitch.scm @@ -318,7 +318,8 @@ corresponding to the FIELDS of CONFIG." (start #~(make-forkexec-constructor (list #$(file-append opensnitchd "/bin/opensnitchd") - "-config-file" #$default-config))) + ;; Live reload breaks with custom rules. + "-no-live-reload" "-config-file" #$default-config))) (stop #~(make-kill-destructor)))))) (define opensnitch-service-type |