1
0
Fork 0

bgpwtf/edge01: as-deployed: add qemu-bridge-helper config to fix anchorvm

Change-Id: I305c498f8332de8addac435da57ba88e1b34c7f0
master
implr 2020-12-18 16:39:52 +01:00
parent 882cd7ba81
commit 67c86188d7
1 changed files with 9 additions and 0 deletions

View File

@ -24,6 +24,15 @@ in {
};
};
config.environment = {
# qemu-bridge-helper (needed for -nic bridge) requires this file to exist.
# We're running as root and don't care about the ACL functionality, so just
# make a minimal file that allows the interface.
# This snippet stolen from nixpkgs//libvirtd.nix
etc."qemu/bridge.conf".text = lib.concatMapStringsSep "\n" (e:
"allow ${e}") [cfg.bridge];
};
config.systemd.services.anchorvm = {
wantedBy = [ "multi-user.target" ];
after = [