Compare commits
3 Commits
code-dedup
...
dsc-debian
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
09bf1cd84d | ||
|
|
7d9b9b9881 | ||
|
|
aba8e1b411 |
@@ -2072,7 +2072,7 @@ EOF
|
||||
# This makes it easy to mount parent folders first
|
||||
# (e.g. /var before /var/tmp)
|
||||
#
|
||||
@PARTITIONS = sort { length $a->{'mountpoint'} cmp length $b->{'mountpoint'} } @PARTITIONS;
|
||||
@PARTITIONS = sort { length $a->{'mountpoint'} <=> length $b->{'mountpoint'} } @PARTITIONS;
|
||||
}
|
||||
|
||||
|
||||
|
||||
20
debian/changelog
vendored
20
debian/changelog
vendored
@@ -1,3 +1,23 @@
|
||||
xen-tools (3.9-3) unstable; urgency=medium
|
||||
|
||||
- Ensure that Fedora guests get /dev/pts mounted.
|
||||
Thanks to Giovanni Biscuolo (Closes: #474919)
|
||||
- Add the new hostnames to /etc/hosts on the dom0 in the correct order.
|
||||
Thanks to Wolfgang Karall (Closes: #477775)
|
||||
- Ensure that packages are remoed non-interactively for scripted stuff.
|
||||
Thanks to Wolfgang Karall (Closes: #477629)
|
||||
- Correctly handle custom partitioning systems.
|
||||
Thanks to Stéphane AICARDI (Closes: #477334)
|
||||
|
||||
-- Steve Kemp <skx@debian.org> Wed, 20 Feb 2007 21:22:23 +0000
|
||||
|
||||
xen-tools (3.9-2) unstable; urgency=high
|
||||
|
||||
- Ensure that the hook scripts which setup networking details for
|
||||
Debian & Ubuntu guests will correctly setup teh broadcast address.
|
||||
|
||||
-- Steve Kemp <skx@debian.org> Wed, 20 Feb 2007 21:22:23 +0000
|
||||
|
||||
xen-tools (3.9-1) unstable; urgency=low
|
||||
|
||||
- general:
|
||||
|
||||
0
debian/examples/setup-kernel-initrd
vendored
Executable file → Normal file
0
debian/examples/setup-kernel-initrd
vendored
Executable file → Normal file
0
debian/examples/update-modules
vendored
Executable file → Normal file
0
debian/examples/update-modules
vendored
Executable file → Normal file
0
debian/preinst
vendored
Executable file → Normal file
0
debian/preinst
vendored
Executable file → Normal file
@@ -91,7 +91,7 @@ if [ -z "${dhcp}" ]; then
|
||||
|
||||
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host
|
||||
|
||||
echo "${ip1} ${name} ${hostname}" >> /etc/hosts
|
||||
echo "${ip1} ${hostname} ${name}" >> /etc/hosts
|
||||
|
||||
|
||||
#
|
||||
|
||||
@@ -91,7 +91,7 @@ if [ -z "${dhcp}" ]; then
|
||||
|
||||
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host
|
||||
|
||||
echo "${ip1} ${name} ${hostname}" >> /etc/hosts
|
||||
echo "${ip1} ${hostname} ${name}" >> /etc/hosts
|
||||
|
||||
|
||||
#
|
||||
|
||||
@@ -182,7 +182,7 @@ removeDebianPackage ()
|
||||
#
|
||||
# Purge the packages we've been given.
|
||||
#
|
||||
chroot ${prefix} /usr/bin/apt-get remove --purge "$@"
|
||||
chroot ${prefix} /usr/bin/apt-get remove --yes --purge "$@"
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -91,7 +91,7 @@ if [ -z "${dhcp}" ]; then
|
||||
|
||||
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host
|
||||
|
||||
echo "${ip1} ${name} ${hostname}" >> /etc/hosts
|
||||
echo "${ip1} ${hostname} ${name}" >> /etc/hosts
|
||||
|
||||
|
||||
#
|
||||
|
||||
@@ -82,7 +82,7 @@ setupStaticNetworking ()
|
||||
#
|
||||
bcast='';
|
||||
if [ ! -z "${broadcast}" ]; then
|
||||
bcast=' broadcast ${broadcast}'
|
||||
bcast=" broadcast ${broadcast}"
|
||||
fi
|
||||
|
||||
#
|
||||
|
||||
@@ -91,7 +91,7 @@ if [ -z "${dhcp}" ]; then
|
||||
|
||||
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host
|
||||
|
||||
echo "${ip1} ${name} ${hostname}" >> /etc/hosts
|
||||
echo "${ip1} ${hostname} ${name}" >> /etc/hosts
|
||||
|
||||
#
|
||||
# If we've updated the /etc/hosts file on the host machine
|
||||
|
||||
@@ -72,7 +72,7 @@ setupStaticNetworking ()
|
||||
#
|
||||
bcast='';
|
||||
if [ ! -z "${broadcast}" ]; then
|
||||
bcast=' broadcast ${broadcast}'
|
||||
bcast=" broadcast ${broadcast}"
|
||||
fi
|
||||
|
||||
#
|
||||
|
||||
@@ -90,8 +90,7 @@ if [ -z "${dhcp}" ]; then
|
||||
|
||||
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host
|
||||
|
||||
echo "${ip1} ${name} ${hostname}" >> /etc/hosts
|
||||
|
||||
echo "${ip1} ${hostname} ${name}" >> /etc/hosts
|
||||
#
|
||||
# If we've updated the /etc/hosts file on the host machine
|
||||
# and there is an installation of dnsmasq installed then
|
||||
|
||||
@@ -91,8 +91,7 @@ if [ -z "${dhcp}" ]; then
|
||||
|
||||
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host
|
||||
|
||||
echo "${ip1} ${name} ${hostname}" >> /etc/hosts
|
||||
|
||||
echo "${ip1} ${hostname} ${name}" >> /etc/hosts
|
||||
|
||||
#
|
||||
# If we've updated the /etc/hosts file on the host machine
|
||||
|
||||
@@ -64,6 +64,7 @@ cat <<E_O_FSTAB > ${prefix}/etc/fstab
|
||||
#
|
||||
# <file system> <mount point> <type> <options> <dump> <pass>
|
||||
proc /proc proc defaults 0 0
|
||||
devpts /dev/pts devpts rw,noexec,nosuid,gid=5,mode=620 0 0
|
||||
E_O_FSTAB
|
||||
for part in `seq 1 ${NUMPARTITIONS}`; do
|
||||
eval "PARTITION=\"\${PARTITION${part}}\""
|
||||
|
||||
@@ -98,7 +98,7 @@ if [ -z "${dhcp}" ]; then
|
||||
|
||||
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host
|
||||
|
||||
echo "${ip1} ${name} ${hostname}" >> /etc/hosts
|
||||
echo "${ip1} ${hostname} ${name}" >> /etc/hosts
|
||||
|
||||
#
|
||||
# If we've updated the /etc/hosts file on the host machine
|
||||
|
||||
Reference in New Issue
Block a user