diff options
author | pav <pav@FreeBSD.org> | 2005-09-18 23:22:04 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-09-18 23:22:04 +0800 |
commit | 3f180a9f7caa7e2cd35b0f500ad65618adb3c634 (patch) | |
tree | 467eaca66a784e70a0757ce9081c7fc5d4238f1d /irc/ptlink-ircd | |
parent | e86b6e7f2755698eac82b0d6a0dbe40629909154 (diff) | |
download | freebsd-ports-gnome-3f180a9f7caa7e2cd35b0f500ad65618adb3c634.tar.gz freebsd-ports-gnome-3f180a9f7caa7e2cd35b0f500ad65618adb3c634.tar.zst freebsd-ports-gnome-3f180a9f7caa7e2cd35b0f500ad65618adb3c634.zip |
- Fix output
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 |