1
0
mirror of synced 2026-02-20 22:05:15 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Steve Kemp
09bf1cd84d Document state of Debian package 3.9-3 2010-08-31 22:40:01 +02:00
Steve Kemp
7d9b9b9881 Document state of Debian package 3.9-2 2010-08-31 22:28:34 +02:00
Steve Kemp
aba8e1b411 Document state of Debian package 3.9-1 2010-08-31 22:19:29 +02:00
17 changed files with 54 additions and 39 deletions

View File

@@ -1,4 +0,0 @@
(^|/)CVS($|/)
(^|/)\.hg($|/)
(^|/)\.hgtags($|/)
ChangeLog

View File

@@ -2072,7 +2072,7 @@ EOF
# This makes it easy to mount parent folders first # This makes it easy to mount parent folders first
# (e.g. /var before /var/tmp) # (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
View File

@@ -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 xen-tools (3.9-1) unstable; urgency=low
- general: - general:

0
debian/examples/setup-kernel-initrd vendored Executable file → Normal file
View File

0
debian/examples/update-modules vendored Executable file → Normal file
View File

0
debian/preinst vendored Executable file → Normal file
View File

View File

@@ -91,7 +91,7 @@ if [ -z "${dhcp}" ]; then
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host logMessage Adding ${hostname} and ${name} to /etc/hosts on the host
echo "${ip1} ${name} ${hostname}" >> /etc/hosts echo "${ip1} ${hostname} ${name}" >> /etc/hosts
# #

View File

@@ -91,7 +91,7 @@ if [ -z "${dhcp}" ]; then
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host logMessage Adding ${hostname} and ${name} to /etc/hosts on the host
echo "${ip1} ${name} ${hostname}" >> /etc/hosts echo "${ip1} ${hostname} ${name}" >> /etc/hosts
# #

View File

@@ -182,7 +182,7 @@ removeDebianPackage ()
# #
# Purge the packages we've been given. # Purge the packages we've been given.
# #
chroot ${prefix} /usr/bin/apt-get remove --purge "$@" chroot ${prefix} /usr/bin/apt-get remove --yes --purge "$@"
} }

View File

@@ -91,7 +91,7 @@ if [ -z "${dhcp}" ]; then
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host logMessage Adding ${hostname} and ${name} to /etc/hosts on the host
echo "${ip1} ${name} ${hostname}" >> /etc/hosts echo "${ip1} ${hostname} ${name}" >> /etc/hosts
# #

View File

@@ -82,7 +82,7 @@ setupStaticNetworking ()
# #
bcast=''; bcast='';
if [ ! -z "${broadcast}" ]; then if [ ! -z "${broadcast}" ]; then
bcast=' broadcast ${broadcast}' bcast=" broadcast ${broadcast}"
fi fi
# #

View File

@@ -91,7 +91,7 @@ if [ -z "${dhcp}" ]; then
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host 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 # If we've updated the /etc/hosts file on the host machine

View File

@@ -72,7 +72,7 @@ setupStaticNetworking ()
# #
bcast=''; bcast='';
if [ ! -z "${broadcast}" ]; then if [ ! -z "${broadcast}" ]; then
bcast=' broadcast ${broadcast}' bcast=" broadcast ${broadcast}"
fi fi
# #

View File

@@ -90,8 +90,7 @@ if [ -z "${dhcp}" ]; then
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host 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 # If we've updated the /etc/hosts file on the host machine
# and there is an installation of dnsmasq installed then # and there is an installation of dnsmasq installed then

View File

@@ -91,8 +91,7 @@ if [ -z "${dhcp}" ]; then
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host 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 # If we've updated the /etc/hosts file on the host machine

View File

@@ -64,6 +64,7 @@ cat <<E_O_FSTAB > ${prefix}/etc/fstab
# #
# <file system> <mount point> <type> <options> <dump> <pass> # <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0 proc /proc proc defaults 0 0
devpts /dev/pts devpts rw,noexec,nosuid,gid=5,mode=620 0 0
E_O_FSTAB E_O_FSTAB
for part in `seq 1 ${NUMPARTITIONS}`; do for part in `seq 1 ${NUMPARTITIONS}`; do
eval "PARTITION=\"\${PARTITION${part}}\"" eval "PARTITION=\"\${PARTITION${part}}\""

View File

@@ -98,7 +98,7 @@ if [ -z "${dhcp}" ]; then
logMessage Adding ${hostname} and ${name} to /etc/hosts on the host 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 # If we've updated the /etc/hosts file on the host machine