1
0
mirror of https://git.dpkg.org/git/dpkg/dlocate.git synced 2025-04-04 06:45:33 +00:00
Files
dlocate/dpkg-hold
Guillem Jover 0dd5903726 Deprecate dpkg-hold, dpkg-purge, dpkg-remove and dpkg-unhold commands
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.
2024-11-22 12:53:43 +01:00

30 lines
676 B
Bash
Executable File

#!/bin/bash
# dpkg-hold -- command line tool to flag package(s) as held.
#
# 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 hold"
#done | dpkg --set-selections
apt-mark hold "$@"