diff options
author | Tim Vanderhoek <hoek@FreeBSD.org> | 1998-08-23 00:17:36 +0000 |
---|---|---|
committer | Tim Vanderhoek <hoek@FreeBSD.org> | 1998-08-23 00:17:36 +0000 |
commit | fc054190a6fe27a2bb00402810d03d9b0e0042b2 (patch) | |
tree | f5714944a370433679f1d48985dac723a0b87495 /irc/ircd-hybrid/pkg-install | |
parent | Don't expect /etc/passwd and /etc/group to mean anything particular. (diff) |
Oops. /dev/null, not /dev/nul. I actually fixed this before
committing but forgot to hit the "save" button...
Diffstat (limited to '')
-rw-r--r-- | irc/ircd-hybrid/pkg-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/irc/ircd-hybrid/pkg-install b/irc/ircd-hybrid/pkg-install index 4f07484c21a1..05cb85569905 100644 --- a/irc/ircd-hybrid/pkg-install +++ b/irc/ircd-hybrid/pkg-install @@ -50,7 +50,7 @@ EOF fi echo "" -if pw groupshow ircd 2> /dev/nul ; then +if pw groupshow ircd 2> /dev/null ; then echo "You already have a group \"ircd\", so I will use it." else echo "You need a group \"ircd\"." |