diff options
-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 |