mirror of
https://git.dpkg.org/git/dpkg/dlocate.git
synced 2025-04-04 06:45:33 +00:00
These are stomping on the dpkg namespace, are extremely simple wrappers around either «dpkg --set-selections» or «apt-mark». Mark them as deprecated to be able to eventually remove them to avoid ownership confusion. These will be removed after the next Debian release (trixie), in forky.
30 lines
684 B
Bash
Executable File
30 lines
684 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# dpkg-purge -- command line tool to flag package(s) to be purged.
|
|
#
|
|
# by Craig Sanders, 1998-10-26. This script is hereby placed into the
|
|
# public domain.
|
|
#
|
|
# 2017-09-06 update: apt-mark does this better. My dpkg-hold etc
|
|
# scripts are now wrappers around apt-mark and continue to exist only so
|
|
# that any existing scripts that depend on them don't break..
|
|
|
|
PROGNAME=$(basename "$0")
|
|
|
|
. /usr/share/dpkg/sh/dpkg-error.sh
|
|
|
|
setup_colors
|
|
|
|
warning "deprecated program; use 'dpkg --set-selections' or 'apt-mark'"
|
|
|
|
if [ -z "$*" ]; then
|
|
echo "Usage: dpkg-hold <package>..."
|
|
exit 1
|
|
fi
|
|
|
|
#for i in $@; do
|
|
# echo "$i purge"
|
|
#done | dpkg --set-selections
|
|
|
|
apt-mark purge "$@"
|