summaryrefslogtreecommitdiff
path: root/mk/defs.SunOS.mk
diff options
context:
space:
mode:
authorjlam <jlam>2001-11-19 16:17:51 +0000
committerjlam <jlam>2001-11-19 16:17:51 +0000
commit658b8b5e80dc765da62b12bdf7431554dd864b66 (patch)
treeb6481131e8675c6d05058b7eebf0c67e8be57c9e /mk/defs.SunOS.mk
parent47a869f5cd8d21baf12303682af2894c578c42cb (diff)
downloadpkgsrc-658b8b5e80dc765da62b12bdf7431554dd864b66.tar.gz
Add definitions for USERADD and GROUPADD, used to create new users and
groups. These commands follow the basic interface of the NetBSD/Solaris useradd and groupadd programs. For platforms on which these commands don't exist, either sysutils/user is added as a dependency, or these are set to ${FALSE}, and the package admin is responsible for creating them himself prior to the installation of a package.
Diffstat (limited to 'mk/defs.SunOS.mk')
-rw-r--r--mk/defs.SunOS.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/mk/defs.SunOS.mk b/mk/defs.SunOS.mk
index 84648c6a077..6d5fcf79f63 100644
--- a/mk/defs.SunOS.mk
+++ b/mk/defs.SunOS.mk
@@ -1,4 +1,4 @@
-# $NetBSD: defs.SunOS.mk,v 1.5 2001/07/15 12:40:03 jlam Exp $
+# $NetBSD: defs.SunOS.mk,v 1.6 2001/11/19 16:17:51 jlam Exp $
#
# Variable definitions for the SunOS/Solaris operating system.
@@ -61,3 +61,7 @@ TRUE?= /usr/bin/true
TYPE?= /usr/bin/type
WC?= /usr/bin/wc
XARGS?= /usr/bin/xargs
+
+USERADD?= /usr/sbin/useradd
+GROUPADD?= /usr/sbin/groupadd
+NOLOGIN?= ${FALSE}