fix(autopatch): Updated two find strings in config.yaml to match upstream cert number changes from 201/204 to 801/804.
#12
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "agent-fix/a9-beta-20260824-131841"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Automated fix by autopatch agent.
Summary: Updated two
findstrings in config.yaml to match upstream cert number changes from 201/204 to 801/804.Root cause
The upstream kernel spec updated its CentOS secure boot certificate names:
%define pesign_name_0 centossecureboot201becamecentossecureboot801(line 820 ofkernel.spec)UKI_secureboot_name=centossecureboot204becamecentossecureboot804(line 2523 ofkernel.spec)The
ReplaceActionfor thepesign_name_0block failed because thefindstring still referenced the old cert namecentossecureboot201. A second action targetingUKI_secureboot_name=centossecureboot204would have also failed for the same reason.The reference branch (
a9) had the same outdated values, so no fix was available there.Changes made to
config.yaml:findin the pesign block:centossecureboot201→centossecureboot801findfor UKI secureboot name:centossecureboot204→centossecureboot804After the fix,
autopatch_validate_configpassed andautopatchran successfully, producing%define pesign_name_0 almalinuxsecureboot0andUKI_secureboot_name=almalinuxsecureboot0in the resulting spec — preserving the intended debranding.Original error
Type:
ActionNotAppliedErrorPackage:
kernel| Webhook branch:c9-betad343ca158btof8cc0e9b91Pull request closed