From owner-svn-ports-head@freebsd.org Thu Apr 19 10:00:57 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F77BF9407A; Thu, 19 Apr 2018 10:00:57 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F2BBC69CD9; Thu, 19 Apr 2018 10:00:56 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ECA6A1EA; Thu, 19 Apr 2018 10:00:56 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3JA0ulZ096724; Thu, 19 Apr 2018 10:00:56 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3JA0udS096723; Thu, 19 Apr 2018 10:00:56 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201804191000.w3JA0udS096723@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Thu, 19 Apr 2018 10:00:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467760 - head/security/checkpassword-pam X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: head/security/checkpassword-pam X-SVN-Commit-Revision: 467760 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Apr 2018 10:00:57 -0000 Author: garga Date: Thu Apr 19 10:00:56 2018 New Revision: 467760 URL: https://svnweb.freebsd.org/changeset/ports/467760 Log: checkpassword-pam binary requires setuid bit to be enabled in order to work with daemons that run as regular users PR: 214227 Submitted by: Armin Gruner Modified: head/security/checkpassword-pam/Makefile Modified: head/security/checkpassword-pam/Makefile ============================================================================== --- head/security/checkpassword-pam/Makefile Thu Apr 19 09:57:34 2018 (r467759) +++ head/security/checkpassword-pam/Makefile Thu Apr 19 10:00:56 2018 (r467760) @@ -3,6 +3,7 @@ PORTNAME= checkpassword-pam PORTVERSION= 0.99 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= SF/checkpasswd-pam/checkpasswd-pam/${PORTVERSION} @@ -16,5 +17,8 @@ GNU_CONFIGURE= yes PLIST_FILES= bin/checkpassword-pam \ man/man8/checkpassword-pam.8.gz + +post-install: + ${CHMOD} u+s ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include