1
0
mirror of synced 2026-04-17 00:00:12 +00:00

2006-12-07 15:06:15 by steve

Sync from sid.
This commit is contained in:
steve
2006-12-07 15:06:15 +00:00
parent 75e6b78318
commit 384e7a98fc
2 changed files with 43 additions and 0 deletions

16
debian/changelog vendored
View File

@@ -1,3 +1,19 @@
xen-tools (3.0~beta1-2) unstable; urgency=low
* Remove old symlinks and directories during preinst. (closes: #401834)
-- Radu Spineanu <radu@debian.org> Wed, 6 Dec 2006 15:58:44 +0200
xen-tools (3.0~beta1-1) unstable; urgency=low
* Development snapshot
* Mention the --mac option in the man page.
(closes: #399708)
* Set the locale version to 'C' to avoid perl warnings.
(closes: #399778)
-- Radu Spineanu <radu@debian.org> Mon, 4 Dec 2006 16:55:31 +0200
xen-tools (2.8-2) unstable; urgency=low
* Support Upstart in hook 30-fix-inittab (Closes: #399153)

27
debian/preinst vendored Executable file
View File

@@ -0,0 +1,27 @@
#!/bin/sh
set -e
#
# Skip, if we are not in "configure" state
#
if [ "$1" != "upgrade" ]; then
exit 0
fi
#
# 2.x -> 3.x
#
if [ -L "/usr/lib/xen-tools/dapper.d" ]; then
rm /usr/lib/xen-tools/dapper.d
fi
if [ -L "/usr/lib/xen-tools/edgy.d" ]; then
rm /usr/lib/xen-tools/edgy.d
fi
if [ -d "/usr/lib/xen-tools/ubuntu.d" ]; then
rm -r /usr/lib/xen-tools/ubuntu.d
fi
#DEBHELPER#
exit 0