Updated for comments

This commit is contained in:
Dimitris Zlatanidis 2023-04-26 18:38:01 +03:00
parent c7fcd3cffc
commit ade5fba26c

View file

@ -60,21 +60,21 @@ SPINNER_COLOR = "green"
# on the system, and will skip any packages that do not already have a
# version installed. If --install- new is specified, the behavior is
# modified to install new packages in addition to upgrading existing ones.
# See: $ man upgradepkg.
# See manpage of the upgradepkg.
INSTALLPKG = "upgradepkg --install-new"
# Slackware command to reinstall packages.
# Upgradepkg usually skips packages if the exact same package (matching name,
# version, arch, and build number) is already installed on the system. Use
# the --reinstall option if you want to upgrade all packages even if the same
# version is already installed. See: $ man upgradepkg.
# version is already installed.
REINSTALL = "upgradepkg --reinstall"
# Slackware command to remove packages.
#removepkg removes a previously installed Slackware package, while writing
# a progress report to the standard output. A package may be specified either
# by the full package name (as you'd see listed in /var/lib/pkgtools/packages/),
# or by the base package name. See: $ man removepkg.
# or by the base package name. See manpage of the removepkg.
REMOVEPKG = "removepkg"
# You can choose a downloader among wget, curl and lftp.