summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobby Workman <rworkman@slackware.com>2021-02-22 01:32:38 -0600
committerRobby Workman <rworkman@slackware.com>2021-02-22 01:32:38 -0600
commitfe99f902ebf272ce3499a11c2b0c8083f0b23879 (patch)
treeac685a36eb9955af955c5f23a8e152c35185e6a5
parentf238a0c96cab2afed05044d66ca734f0d8c6f84a (diff)
downloadslackpkg-fe99f902ebf272ce3499a11c2b0c8083f0b23879.tar.xz
Clarify how to blacklist duplicate packages
-rw-r--r--files/core-functions.sh13
1 files changed, 6 insertions, 7 deletions
diff --git a/files/core-functions.sh b/files/core-functions.sh
index 224692f..5681e08 100644
--- a/files/core-functions.sh
+++ b/files/core-functions.sh
@@ -1259,14 +1259,12 @@ function sanity_check() {
if [ "$DOUBLEFILES" != "" ]; then
echo -e "\
-You have a broken $ROOT/var/log/packages/ - with two versions of the same package.\n\
-The list of packages duplicated in your machine is shown below, but don't\n\
-worry about this list - when you select your action, slackpkg will show a\n\
-better list:\n"
+You have a broken $ROOT/var/log/packages/ - with multiple versions of the same package.\n\
+The list of packages duplicated in your machine is shown below:\n"
printf "%s\n" $DOUBLEFILES
echo -ne "\n\
-You can (R)emove, or (I)gnore these packages.\n\
+You can (R)emove one or more of, or (I)gnore these packages.\n\
Select your action (R/I): "
read ANSWER
echo
@@ -1276,8 +1274,9 @@ Select your action (R/I): "
remove_pkg
;;
*)
- echo "Remove or blacklist the affected packages in order for \
-slackpkg to work properly."
+ echo "Remove one or more of OR blacklist the affected packages \
+in order for slackpkg to work properly."
+ echo "To blacklist the affected packages, edit /etc/slackpkg/blacklist"
cleanup
;;
esac