2006-12-07 15:06:15 by steve
Sync from sid.
This commit is contained in:
16
debian/changelog
vendored
16
debian/changelog
vendored
@@ -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
27
debian/preinst
vendored
Executable 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
|
||||
Reference in New Issue
Block a user