diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-03-18 09:57:14 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-03-18 09:57:14 +0900 |
commit | 372802fe9adc39ee7f80219d00923b0f4095b2a0 (patch) | |
tree | 90990e155c1170e1326948953f67fa5f581fbd4e | |
parent | 11eb2c0ffc9a08166ec8cb8874e323bba2e74557 (diff) |
services: libvirt: Fixup setting LINUX_MODULE_DIRECTORY variable.
This is a follow-up to commit 614ba97d984 ("gnu: libvirt: Fix path to Linux
modules.gnu: libvirt: Fix path to Linux modules."), which I had inadvertently
broken with a small change before applying. Apologies!
* gnu/services/virtualization.scm (libvirt-shepherd-service): Add missing
string append to form LINUX_MODULE_DIRECTORY variable definition.
Change-Id: I304bdf20584d475fb01e3da995f0eddf430fb73b
-rw-r--r-- | gnu/services/virtualization.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/services/virtualization.scm b/gnu/services/virtualization.scm index 2a0f9bef27..a6f8e821da 100644 --- a/gnu/services/virtualization.scm +++ b/gnu/services/virtualization.scm @@ -514,8 +514,9 @@ potential infinite waits blocking libvirt.")) (string-append "PATH=/run/current-system/profile/bin:" "/run/current-system/profile/sbin") - "LINUX_MODULE_DIRECTORY=" - "/run/booted-system/kernel/lib/modules"))) + (string-append + "LINUX_MODULE_DIRECTORY=" + "/run/booted-system/kernel/lib/modules")))) (stop #~(make-kill-destructor)))))) (define libvirt-service-type |