Date: Sat, 23 Mar 2013 12:35:15 +0000 (UTC) From: Guido Falsi <madpilot@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315025 - in head/x11/slim: . files Message-ID: <201303231235.r2NCZF17025352@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: madpilot Date: Sat Mar 23 12:35:14 2013 New Revision: 315025 URL: http://svnweb.freebsd.org/changeset/ports/315025 Log: - Add "Conversation failure" error code to authentication errors list in order to permit login with special usernames. - Fix conssole command - Bump PORTREVISION PR: ports/174482 Submitted by: Maxim Samsonov <xors@mailup.net> Approved by: Henry Hu <henry.hu.sh@gmail.com> (maintainer) Added: head/x11/slim/files/patch-PAM.cpp (contents, props changed) Modified: head/x11/slim/Makefile head/x11/slim/files/patch-slim.conf (contents, props changed) Modified: head/x11/slim/Makefile ============================================================================== --- head/x11/slim/Makefile Sat Mar 23 12:01:32 2013 (r315024) +++ head/x11/slim/Makefile Sat Mar 23 12:35:14 2013 (r315025) @@ -3,7 +3,7 @@ PORTNAME= slim PORTVERSION= 1.3.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11 MASTER_SITES= http://slim.berlios.de/releases/ Added: head/x11/slim/files/patch-PAM.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/slim/files/patch-PAM.cpp Sat Mar 23 12:35:14 2013 (r315025) @@ -0,0 +1,10 @@ +--- PAM.cpp.orig 2012-06-26 12:20:14.000000000 +0400 ++++ PAM.cpp 2012-12-16 16:05:09.000000000 +0400 +@@ -128,6 +128,7 @@ + case PAM_MAXTRIES: + case PAM_CRED_INSUFFICIENT: + case PAM_AUTH_ERR: ++ case PAM_CONV_ERR: + throw Auth_Exception(pam_handle, "pam_authentication()", last_result); + + case PAM_SUCCESS: Modified: head/x11/slim/files/patch-slim.conf ============================================================================== --- head/x11/slim/files/patch-slim.conf Sat Mar 23 12:01:32 2013 (r315024) +++ head/x11/slim/files/patch-slim.conf Sat Mar 23 12:35:14 2013 (r315025) @@ -18,7 +18,7 @@ reboot_cmd /sbin/shutdown -r now -console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login" -#suspend_cmd /usr/sbin/suspend -+console_cmd %%LOCALBASE%%/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/motd; exec /bin/login" ++console_cmd %%LOCALBASE%%/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/motd; exec /usr/bin/login" +suspend_cmd /usr/sbin/acpiconf -s 3 # Full path to the xauth binary
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303231235.r2NCZF17025352>