diff options
author | Tomas Volf <~@wolfsden.cz> | 2024-01-12 00:42:55 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2024-01-12 17:26:24 +0100 |
commit | 0d7e40473b1054b23307e5362e9f4b1ef2766f5b (patch) | |
tree | 8949d994d93cdfaa0cf976b02512e3875a3d4911 /gnu/tests | |
parent | 97296f82390f400681886f6a8c758bb5e9359249 (diff) |
tests: security: Fix fail2ban-extension-test.
The openssh-service-type requires 'networking to be setup. So add a
static-networking-service-type that provides it.
* gnu/tests/security.scm
(run-fail2ban-extension-test)[simple-operating-system]: Add
static-networking-service-type service.
Change-Id: I8d736cbf3fcaa54f86fbd60c52b3595b647731e2
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu/tests')
-rw-r--r-- | gnu/tests/security.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/tests/security.scm b/gnu/tests/security.scm index ca6c857899..93cbe4a977 100644 --- a/gnu/tests/security.scm +++ b/gnu/tests/security.scm @@ -20,6 +20,7 @@ #:use-module (guix gexp) #:use-module (gnu packages admin) #:use-module (gnu services) + #:use-module (gnu services base) #:use-module (gnu services security) #:use-module (gnu services ssh) #:use-module (gnu system) @@ -176,7 +177,9 @@ (simple-operating-system (service (fail2ban-jail-service openssh-service-type (fail2ban-jail-configuration (name "sshd") (enabled? #t))) - (openssh-configuration))) + (openssh-configuration)) + (service static-networking-service-type + (list %qemu-static-networking))) (test-equal "fail2ban sshd jail running status output" '("Status for the jail: sshd" |