mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-16 14:39:23 +03:00
libvirt: fix escapeShellArg usage
Co-Authored-By: conferno <conferno@camfex.cz>
This commit is contained in:
parent
9336b15a88
commit
b80edca6be
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ in {
|
||||||
after = [ "systemd-udev-settle.service" "libvirtd-config.service" ]
|
after = [ "systemd-udev-settle.service" "libvirtd-config.service" ]
|
||||||
++ optional vswitch.enable "ovs-vswitchd.service";
|
++ optional vswitch.enable "ovs-vswitchd.service";
|
||||||
|
|
||||||
environment.LIBVIRTD_ARGS = concatMapStringsSep " " escapeShellArg (
|
environment.LIBVIRTD_ARGS = escapeShellArgs (
|
||||||
[ "--config" configFile
|
[ "--config" configFile
|
||||||
"--timeout" "120" # from ${libvirt}/var/lib/sysconfig/libvirtd
|
"--timeout" "120" # from ${libvirt}/var/lib/sysconfig/libvirtd
|
||||||
] ++ cfg.extraOptions);
|
] ++ cfg.extraOptions);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue