Skip to content
Snippets Groups Projects
Commit 961c93de authored by Guido Günther's avatar Guido Günther
Browse files

Drop libvirt-bin transitional package

parent d4552896
No related branches found
No related tags found
No related merge requests found
......@@ -73,22 +73,6 @@ Vcs-Browser: https://anonscm.debian.org/cgit/pkg-libvirt/libvirt.git/
Homepage: http://libvirt.org
Standards-Version: 3.9.6
Package: libvirt-bin
Architecture: any
Depends:
${misc:Depends},
libvirt-daemon-system (>= ${binary:Version}),
libvirt-clients (>= ${binary:Version}),
Section: oldlibs
Priority: extra
Description: Dummy transitional package
Libvirt is a C toolkit to interact with the virtualization capabilities
of recent versions of Linux (and other OSes). The library aims at providing
a long term stable C API for different virtualization mechanisms. It currently
supports QEMU, KVM, XEN, OpenVZ, LXC, and VirtualBox.
.
This is a transitional package. You can safely remove it.
Package: libvirt-clients
Architecture: any
Depends:
......
usr/share/doc/libvirt0/changelog.gz usr/share/doc/libvirt-bin/changelog.gz
usr/share/doc/libvirt-daemon/README.Debian usr/share/doc/libvirt-bin/README.Debian
# libvirt-bin renamed to libvirtd
mv_conffile /etc/default/libvirt-bin /etc/default/libvirtd 1.2.6-1~
mv_conffile /etc/init.d/libvirt-bin /etc/init.d/libvirtd 1.2.6-1~
# Installed incorrectly
rm_conffile /etc/apparmor.d/libvirtd/TEMPLATE 1.2.9-3~ libvirt-bin
# Obsolete
rm_conffile /etc/apparmor.d/libvirt/TEMPLATE 1.2.9-3~ libvirt-bin
#!/bin/sh
# preinst script for libvirt-bin
#
# see: dh_installdeb(1)
set -e
# summary of how this script can be called:
# * <new-preinst> `install'
# * <new-preinst> `install' <old-version>
# * <new-preinst> `upgrade' <old-version>
# * <old-preinst> `abort-upgrade' <new-version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
case "$1" in
install|upgrade)
# When renaming the .service file, systemd might become confused, we
# need to ensure that the libvirtd daemon is fully stopped before
# trying to restart it again. (Bug: #730604)
if dpkg --compare-versions "$2" lt-nl "1.2.6-1~"; then
if [ -d /run/systemd/system ]; then
[ ! -f /lib/systemd/system/libvirt-bin.service ] || invoke-rc.d libvirt-bin stop
fi
fi
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment