summaryrefslogtreecommitdiff
path: root/data/pam-redhat/gdm-password.pam
Commit message (Collapse)AuthorAgeFilesLines
* pam-redhat: Remove pam_console from service filesIker Pedrosa2023-02-061-1/+0
| | | | | | | | | | | | | | pam_console is being removed as it was replaced by ConsoleKit. The changes in this commit just remove pam_console from the service files. If you are curious about the removal check the Fedora System-Wide Change proposal linked below. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1822228 Relates: https://fedoraproject.org/wiki/Changes/RemovePamConsole Relates: https://bugzilla.redhat.com/show_bug.cgi?id=2166692 Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
* drop consolekit supportRay Strode2015-06-121-1/+0
| | | | | | It was deprecated in 3.16 to be removed in 3.18 https://bugzilla.gnome.org/show_bug.cgi?id=743940
* Revert "pam: drop postlogin from fedora pam config"Ray Strode2015-01-161-0/+2
| | | | | | | | | This reverts commit 76d26d8c1c37c6bd38bcac082d5cc62670fe5d39. It breaks pam_ecryptfs. Downstream: https://bugzilla.redhat.com/show_bug.cgi?id=1174366 https://bugzilla.gnome.org/show_bug.cgi?id=743045
* pam: drop postlogin from fedora pam configRay Strode2014-04-151-2/+0
| | | | | | | It's just used in practice to inflict ugly "Last Login" messages on the GDM screen https://bugzilla.gnome.org/show_bug.cgi?id=728281
* pam: improve keyring integration on fedoraRay Strode2014-03-271-1/+2
| | | | | | This commit properly hooks in gnome-keyring into the password stack, so password changes are caught at login time, and the keyring is appropriately rekeyed.
* fedora: allow root loginsRay Strode2012-09-161-1/+0
| | | | | | | It's an issue that comes up over and over again. Give in to the peer pressure and allow root login by default. We warn in gnome-session now anyway.
* pam: update redhat pam filesRay Strode2012-07-191-16/+18
| | | | | | | | | | commit 295d0bc42b11a9473a024b9cdca58bdd9197e905 made it so we ship per-distro pam files upstream. This commit updates those PAM files to be the latest version we ship in Fedora. https://bugzilla.gnome.org/show_bug.cgi?id=675085
* Clean up PAM build/install rules; move to pam-redhatColin Walters2012-07-101-0/+19
The build system was inconsistent in its handling of pam files. The multistack files had names ending in .pam, which we copied to an unsuffixed file, and installed via pam_DATA. The non-multistack files had unsuffixed filenames in the source, which we installed manually via install-data-local. Let's clean this up by naming every file with ".pam", and do the rename when we put them in the install root. This is faster and requires less makefile boilerplate to copy the files during the build process. Note: This also drops the previous crappy implementation of a configuration management scheme where we only installed the files if they didn't already exist. I'm not aware of anyone who actually uses 'make install' for gdm and cares about that semantic. Finally, because all of these pam files are Red Hat specific, move them to a separate pam-redhat directory, to ease the addition of a future patch which adds PAM files for different systems. https://bugzilla.gnome.org/show_bug.cgi?id=675085