diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-05-04 10:56:21 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-05-06 12:22:34 +0200 |
commit | f744f060ddaccb4432fab3ff021b3ab8302c0b3e (patch) | |
tree | e4662bad6dea6f24dc49463b4b18aece80278884 | |
parent | 5dccf8781c961d614f764897ee0484527b798e29 (diff) | |
download | guix-f744f060ddaccb4432fab3ff021b3ab8302c0b3e.tar.gz guix-f744f060ddaccb4432fab3ff021b3ab8302c0b3e.zip |
gnu: fail2ban: Move file deletion to source snippet.
* gnu/packages/admin.scm (fail2ban)
[arguments]<phases>: Move multiple file deletion from here...
[source]<snippet>: ...to here.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/admin.scm | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 1d0ec121ff..216776e62c 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -6185,6 +6185,15 @@ alias cysdig=sudo csysdig --modern-bpf (modules '((guix build utils))) (snippet '(begin + ;; Replacing those by our own paths-guix.conf + (with-directory-excursion "config" + (for-each delete-file + '("paths-arch.conf" + "paths-debian.conf" + "paths-fedora.conf" + "paths-freebsd.conf" + "paths-opensuse.conf" + "paths-osx.conf"))) ;; Get rid of absolute file names. (substitute* "setup.py" (("/etc/fail2ban") @@ -6248,14 +6257,6 @@ alias cysdig=sudo csysdig --modern-bpf (lambda* (#:key inputs #:allow-other-keys) ;; deleting things that are not feasible to fix ;; or won't be used any way - (with-directory-excursion "config" - (for-each delete-file - '("paths-arch.conf" - "paths-debian.conf" - "paths-fedora.conf" - "paths-freebsd.conf" - "paths-opensuse.conf" - "paths-osx.conf"))) (with-directory-excursion "config/action.d" (for-each delete-file '("apf.conf" |