diff options
author | Martin Matuska <mm@FreeBSD.org> | 2008-04-03 15:41:13 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2008-04-03 15:41:13 +0000 |
commit | 37cda9bfe28c750f2fe28b2c8599ca1e23e9bf82 (patch) | |
tree | eb2b05ddfc0199c2e58de6ad34c8beccecca5fde | |
parent | Fix the build with new libsigc++20 2.2.2. (diff) |
- Fix error in deinstall message
-rw-r--r-- | www/openacs/files/pkg-deinstall.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/openacs/files/pkg-deinstall.in b/www/openacs/files/pkg-deinstall.in index 1d464d82ef75..f3a321c4cd3b 100644 --- a/www/openacs/files/pkg-deinstall.in +++ b/www/openacs/files/pkg-deinstall.in @@ -16,7 +16,7 @@ if ${PW} usershow "${OPENACS_USER}" 2>/dev/null 1>&2; then echo "To delete ${OPENACS_USER} user permanently, use the following command:" echo "${PW} userdel \"${OPENACS_USER}\"" fi -if ${PW} usershow "${OPENACS_GROUP}" 2>/dev/null 1>&2; then +if ${PW} groupshow "${OPENACS_GROUP}" 2>/dev/null 1>&2; then echo "" echo "To delete ${OPENACS_GROUP} group permanently, use the following command:" echo "${PW} groupdel \"${OPENACS_GROUP}\"" |