diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-05-26 03:59:17 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-05-26 03:59:17 +0800 |
commit | 7a514906607876262a006f6ec20e56060ead648e (patch) | |
tree | e534697efbbd30f3e4dd6a654a206f99bf880176 /sysutils | |
parent | 9f072b4a3de4538b1f269eae114447874a42c997 (diff) | |
download | freebsd-ports-gnome-7a514906607876262a006f6ec20e56060ead648e.tar.gz freebsd-ports-gnome-7a514906607876262a006f6ec20e56060ead648e.tar.zst freebsd-ports-gnome-7a514906607876262a006f6ec20e56060ead648e.zip |
add userlist
Prints a list of all usernames in /etc/passwd
PR: 27207
Submitted by: Jamie Heckford <jamie@jamiesdomain.org.uk>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/userlist/Makefile | 22 | ||||
-rw-r--r-- | sysutils/userlist/distinfo | 1 | ||||
-rw-r--r-- | sysutils/userlist/pkg-comment | 1 | ||||
-rw-r--r-- | sysutils/userlist/pkg-descr | 7 | ||||
-rw-r--r-- | sysutils/userlist/pkg-plist | 1 |
6 files changed, 33 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 6737c77dbfac..e02b57086981 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -144,6 +144,7 @@ SUBDIR += unquote SUBDIR += upsd SUBDIR += upsmon + SUBDIR += userlist SUBDIR += uwatch SUBDIR += webmin SUBDIR += whowatch diff --git a/sysutils/userlist/Makefile b/sysutils/userlist/Makefile new file mode 100644 index 000000000000..62699663229d --- /dev/null +++ b/sysutils/userlist/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: userlist +# Date created: 8 May 2001 +# Whom: Jamie Heckford <jamie@jamiesdomain.co.uk> +# +# $FreeBSD$ +# + +PORTNAME= userlist +PORTVERSION= 0.1 +CATEGORIES= sysutils +MASTER_SITES= http://www.jamiesdomain.org.uk/userlist/${PORTVERSION}/ +MASTER_SITE_SUBDIR= ${PORTVERSION} + +MAINTAINER= jamie@jamiesdomain.org.uk + +NO_BUILD= yes +WRKSRC= ${WRKDIR}/${PORTNAME} + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/userlist ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/sysutils/userlist/distinfo b/sysutils/userlist/distinfo new file mode 100644 index 000000000000..11befc9d3171 --- /dev/null +++ b/sysutils/userlist/distinfo @@ -0,0 +1 @@ +MD5 (userlist-0.1.tar.gz) = b8600b4199111d0b39fdcea656b87e82 diff --git a/sysutils/userlist/pkg-comment b/sysutils/userlist/pkg-comment new file mode 100644 index 000000000000..9e48ced61a2c --- /dev/null +++ b/sysutils/userlist/pkg-comment @@ -0,0 +1 @@ +Prints a list of all usernames in /etc/passwd diff --git a/sysutils/userlist/pkg-descr b/sysutils/userlist/pkg-descr new file mode 100644 index 000000000000..018128ee6081 --- /dev/null +++ b/sysutils/userlist/pkg-descr @@ -0,0 +1,7 @@ +Userlist is a simple awk script that will parse /etc/passwd +and print a list of all usernames with a UID greater than 100. + +WWW: http://www.jamiesdomain.org.uk/ + +- Jamie Heckford +jamie@jamiesdomain.org.uk diff --git a/sysutils/userlist/pkg-plist b/sysutils/userlist/pkg-plist new file mode 100644 index 000000000000..8ce7465cd852 --- /dev/null +++ b/sysutils/userlist/pkg-plist @@ -0,0 +1 @@ +bin/userlist |