From 0c38df0c2d7b534b333b9437acf4484de0cd9d6f Mon Sep 17 00:00:00 2001 From: tremor021 Date: Wed, 24 Dec 2025 13:16:38 +0100 Subject: [PATCH] Fix gento template discovery --- misc/build.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/build.func b/misc/build.func index 7ce994d1e..657382e94 100644 --- a/misc/build.func +++ b/misc/build.func @@ -3728,7 +3728,7 @@ create_lxc_container() { case "$PCT_OSTYPE" in debian | ubuntu | devuan) TEMPLATE_PATTERN="-standard_" ;; alpine | fedora | rocky | rockylinux | centos | almalinux | openeuler) TEMPLATE_PATTERN="-default_" ;; - gentoo) TEMPLATE_PATTERN="-current_" ;; + gentoo) TEMPLATE_PATTERN="-current-openrc" ;; opensuse) TEMPLATE_PATTERN="-default_" ;; *) TEMPLATE_PATTERN="" ;; esac