Your message dated Thu, 5 Mar 2026 13:38:33 +0100
with message-id <[email protected]>
and subject line Re: autopkgtest-build-lxc: searches for bridge at
lxc.network.link not current lxc.net.0.link
has caused the Debian Bug report #1011060,
regarding autopkgtest-build-lxc: searches for bridge at lxc.network.link not
current lxc.net.0.link
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1011060: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1011060
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: autopkgtest
Version: 5.21
Severity: normal
The autopkgtest-build-lxc script searches for a bridge interface as
follows:
local bridge_interface=$(awk '{ if ($1 == "lxc.network.link")
print($3)}' /etc/lxc/default.conf)
But the current version of the lxc package has the following in
/etc/lxc/default.conf:
-----
lxc.net.0.type = veth
lxc.net.0.link = lxcbr0
lxc.net.0.flags = up
lxc.apparmor.profile = generated
lxc.apparmor.allow_nesting = 1
-----
So the bridge will not be detected.
Perhaps the code could be modified to something like:
local bridge_interface=$(awk '{ if ($1 == "lxc.network.link" || $1
== "lxc.net.0.link") print($3)}' /etc/lxc/default.conf)
Best wishes,
Julian
--- End Message ---
--- Begin Message ---
Version: 5.34
Hi,
On Mon, 16 May 2022 11:58:16 +0100 Julian Gilbey <[email protected]> wrote:
The autopkgtest-build-lxc script searches for a bridge interface as
follows:
local bridge_interface=$(awk '{ if ($1 == "lxc.network.link")
print($3)}' /etc/lxc/default.conf)
This was fixed in 2024 as I reported bug 1067406 as a duplicate of this
bug and fixed that.
Mind you, this is part of the code now:
# translate proxy address to one that can be accessed from the
# running container (let's not support more complex setups with
# more than one network)
Paul
OpenPGP_signature.asc
Description: OpenPGP digital signature
--- End Message ---