update authselect profile name

This commit is contained in:
Max Erenberg 2024-05-18 12:37:04 -04:00
parent 62bafe7522
commit 51117024b0
1 changed files with 1 additions and 1 deletions

View File

@ -751,7 +751,7 @@ func (mgr *TemplateManager) dnfRemoveUnnecessaryPackages(handle *guestfs.Guestfs
}
// Now that we removed SSSD, we also have to make sure that it's not being used in PAM.
// The way to do this on Fedora (and likely other RHEL-based distros) is with authselect.
args = []string{"authselect", "select", "minimal"}
args = []string{"authselect", "select", "local"}
_, err = mgr.logAndRunCommand(handle, args)
return err
}