diff options
author | Hanketsu <hanketsu@egregore.fun> | 2025-02-01 14:27:13 +0100 |
---|---|---|
committer | Hanketsu <hanketsu@egregore.fun> | 2025-02-01 22:59:34 +0100 |
commit | 2a97fdf0eb60de0e4b3b7fb54ee03abb2bcdc08e (patch) | |
tree | 63d5f6fc5f001ba6277f5f7f5bde25f8807c439a | |
parent | bc56e99ad90a7638e0795e7a10b3f2cb661bdd27 (diff) |
battering: opensnitchd: Keep original default-config.json
* battering/packages/opensnitch.scm
(opensnitchd)[arguments]<#:phases>['install-config-file]: Remove substitute*
edit of the config file.
-rw-r--r-- | battering/packages/opensnitch.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/battering/packages/opensnitch.scm b/battering/packages/opensnitch.scm index 5b562d0..4a51238 100644 --- a/battering/packages/opensnitch.scm +++ b/battering/packages/opensnitch.scm @@ -220,8 +220,5 @@ Opensnitch to monitor traffic via eBPF rules.") (copy-file "default-config.json" (string-append etc "/default-config.json")) (copy-file "system-fw.json" - (string-append etc "/system-fw.json")) - (substitute* (string-append etc "/default-config.json") - (("(Address.*)," all rest) rest) - (("^.*(LogFile|ProcMonitorMethod).*\n$") "")))))))) + (string-append etc "/system-fw.json")))))))) ((#:install-source? _ #f) #f))))) |