diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-18 15:22:04 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-18 15:22:04 +0000 |
commit | 1510f516a3c119887bcb38fa9ecf0ab228923e0f (patch) | |
tree | 8293b7b880ab9df35db17c6f3faab94975d90b09 /irc/ptlink-ircd | |
parent | df9ca56f4dd9845bad1e3105d274a995327f9830 (diff) | |
download | ports-1510f516a3c119887bcb38fa9ecf0ab228923e0f.tar.gz ports-1510f516a3c119887bcb38fa9ecf0ab228923e0f.zip |
Notes
Diffstat (limited to 'irc/ptlink-ircd')
-rw-r--r-- | irc/ptlink-ircd/pkg-install | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/irc/ptlink-ircd/pkg-install b/irc/ptlink-ircd/pkg-install index b998d4565db9..d837e4e6e306 100644 --- a/irc/ptlink-ircd/pkg-install +++ b/irc/ptlink-ircd/pkg-install @@ -11,18 +11,18 @@ POST-INSTALL) GID=72 if pw groupshow "${GROUP}" > /dev/null 2>&1; then - echo '===> Using existing group "${GROUP}"' + echo "===> Using existing group ${GROUP}" else - echo '===> Adding group "${GROUP}"' + echo "===> Adding group ${GROUP}" pw groupadd ${GROUP} -g ${GID} || exit 1 fi if pw usershow "${USER}" > /dev/null 2>&1; then - echo '===> Using existing user "${USER}"' + echo "===> Using existing user ${USER}" else - echo '===> Adding user "${USER}"' + echo "===> Adding user ${USER}" pw adduser ${USER} -u ${UID} -g ${GROUP} -h - -d "/nonexistent" \ - -s "/nonexistent" -c "IRC daemon" || exit 1 - fi + -s "/nonexistent" -c "IRC daemon" || exit 1 + fi ;; esac |