Skip to content

Commit 0b9b871

Browse files
committed
Debian sid no-merged-usr
1 parent aa3dacb commit 0b9b871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/debootstrap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func (s *debootstrap) Run() error {
2424
release := strings.ToLower(s.definition.Image.Release)
2525

2626
// Enable merged /usr by default, and disable it for certain distros/releases
27-
if distro == "ubuntu" && incus.ValueInSlice(release, []string{"xenial", "bionic", "noble"}) || distro == "mint" && incus.ValueInSlice(release, []string{"tara", "tessa", "tina", "tricia", "ulyana"}) || distro == "devuan" {
27+
if distro == "ubuntu" && incus.ValueInSlice(release, []string{"xenial", "bionic", "noble"}) || distro == "debian" && incus.ValueInSlice(release, []string{"sid"}) || distro == "mint" && incus.ValueInSlice(release, []string{"tara", "tessa", "tina", "tricia", "ulyana"}) || distro == "devuan" {
2828
args = append(args, "--no-merged-usr")
2929
} else {
3030
args = append(args, "--merged-usr")

0 commit comments

Comments
 (0)