diff options
author | jlam <jlam@pkgsrc.org> | 2007-06-15 18:15:06 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2007-06-15 18:15:06 +0000 |
commit | 485d0ee096da867d8ea368d9823b2a22e63d6ecd (patch) | |
tree | 2dc743a478318addecf45daa709120a4e93754cb /net/uucp | |
parent | 08674e03e29fefe93e2d0b69760905a01cbad9df (diff) | |
download | pkgsrc-485d0ee096da867d8ea368d9823b2a22e63d6ecd.tar.gz |
* Change some instances of ROOT_USER and ROOT_GROUP to BINOWN and BINGRP
in SPECIAL_PERMS usage.
* Consistently use 4555 for setuid and 2555 for setgid programs.
Diffstat (limited to 'net/uucp')
-rw-r--r-- | net/uucp/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/net/uucp/Makefile b/net/uucp/Makefile index 8fb03d787ff..7b8cc5ab366 100644 --- a/net/uucp/Makefile +++ b/net/uucp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2007/03/16 20:02:04 christos Exp $ +# $NetBSD: Makefile,v 1.7 2007/06/15 18:15:20 jlam Exp $ DISTNAME= uucp-1.07 PKGREVISION= 3 @@ -28,13 +28,13 @@ PKG_USERS= ${UUCP_USER}:${UUCP_GROUP} INFO_FILES= # PLIST # UUCP installs many set-uid "uucp" binaries. -SPECIAL_PERMS+= bin/cu ${UUCP_USER} ${ROOT_GROUP} 4555 -SPECIAL_PERMS+= bin/uucp ${UUCP_USER} ${ROOT_GROUP} 4555 -SPECIAL_PERMS+= bin/uuname ${UUCP_USER} ${ROOT_GROUP} 4555 -SPECIAL_PERMS+= bin/uustat ${UUCP_USER} ${ROOT_GROUP} 4555 -SPECIAL_PERMS+= bin/uux ${UUCP_USER} ${ROOT_GROUP} 4555 -SPECIAL_PERMS+= sbin/uucico ${UUCP_USER} ${ROOT_GROUP} 4555 -SPECIAL_PERMS+= sbin/uuxqt ${UUCP_USER} ${ROOT_GROUP} 4555 +SPECIAL_PERMS+= bin/cu ${UUCP_USER} ${BINGRP} 4555 +SPECIAL_PERMS+= bin/uucp ${UUCP_USER} ${BINGRP} 4555 +SPECIAL_PERMS+= bin/uuname ${UUCP_USER} ${BINGRP} 4555 +SPECIAL_PERMS+= bin/uustat ${UUCP_USER} ${BINGRP} 4555 +SPECIAL_PERMS+= bin/uux ${UUCP_USER} ${BINGRP} 4555 +SPECIAL_PERMS+= sbin/uucico ${UUCP_USER} ${BINGRP} 4555 +SPECIAL_PERMS+= sbin/uuxqt ${UUCP_USER} ${BINGRP} 4555 SENDMAIL?= /usr/sbin/sendmail |