summaryrefslogtreecommitdiffstats
path: root/files/slackpkg
diff options
context:
space:
mode:
authorRobby Workman <rworkman@slackware.com>2021-02-11 19:03:30 -0600
committerRobby Workman <rworkman@slackware.com>2021-02-11 19:06:31 -0600
commit9c2719ff0f0d99ad811fdd274fcdd8fc55b37488 (patch)
tree44590e1bebea0d261cc3419b5648a853c28692bd /files/slackpkg
parent0635933b1eab51aa63c921e62ee5f2e82fd79efb (diff)
downloadslackpkg-9c2719ff0f0d99ad811fdd274fcdd8fc55b37488.tar.xz
Further fixup/enhancement to blacklisting issues
Diffstat (limited to 'files/slackpkg')
-rw-r--r--files/slackpkg14
1 files changed, 3 insertions, 11 deletions
diff --git a/files/slackpkg b/files/slackpkg
index e555a25..b822e84 100644
--- a/files/slackpkg
+++ b/files/slackpkg
@@ -476,17 +476,9 @@ case "$CMD" in
fi
;;
blacklist)
- #
- # If blacklist is called without package name, list
- # all blacklisted packages
- if [ "$INPUTLIST" = "" ]; then
- echo -e "Packages in blacklist:\n"
- grep -v "^#" $CONF/blacklist | $MORECMD
- cleanup
- fi
-
- # As of 15.0, this function just runs /bin/false and exits with a comment
- blacklist_pkg
+ echo -e "Edit /etc/slackpkg/blacklist to add or remove packages."
+ echo -e "Packages in blacklist:\n"
+ grep -v "^#" $CONF/blacklist | $MORECMD
;;
file-search)
PATTERN=$(echo $ARG | sed -e 's/\+/\\\+/g' -e 's/\./\\\./g' -e 's/ /\|/g')