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

Compare commits

..

13 Commits

Author SHA1 Message Date
Steve Kemp
c85144de0f Sync 2008-10-13 19:23:15 +01:00
Steve Kemp
455c16cefe Abort if the generated configuration file already exists.
(Closes: #499475)
2008-10-13 19:18:05 +01:00
Steve Kemp
290a30b1b1 Record the arch for rpm-based distros. Closes: 475125 2008-10-13 19:14:47 +01:00
Steve Kemp
8e2f1236fb Don't test for the POSIX module; per http://www.perlmonks.org/?node_id=689911 2008-06-03 21:49:44 +01:00
Steve Kemp
15436cc018 Correctly sort custom partitions.
#477334
2008-04-30 19:06:36 +01:00
Steve Kemp
3717d0cc15 Correctly force purging of packages in the role script(s).
#477629
2008-04-30 19:05:54 +01:00
Steve Kemp
5d11b820b7 Add the hostname to dom0's /etc/hosts in the correct order.
#477775
2008-04-30 19:05:21 +01:00
Steve Kemp
161ee94632 Add /dev/pts to the fedora guests. #474919 2008-04-30 19:04:04 +01:00
Steve Kemp
9ff14a400e Updated with the debian release 2008-04-30 19:02:51 +01:00
Steve Kemp
cb77db18b9 added perltidy rule 2008-04-01 20:52:15 +01:00
Steve Kemp
8be8f39add Ran through perltidy 2008-04-01 20:52:08 +01:00
Steve Kemp
be30692061 Only show the install source if there is one. 2008-03-14 12:12:28 +00:00
Steve Kemp
7a6c7f17c9 Fixed bug where quote characters prevented interpolation.
Added naive test case to catch the error next time round..
2008-02-20 11:55:32 +00:00
11 changed files with 13 additions and 17 deletions

4
.hgignore Normal file
View File

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

View File

@@ -1360,7 +1360,7 @@ sub parseCommandLineArguments
"swap-dev=s", \$install{'swap-dev'},
# Networking options
"dhcp!", \$CONFIG{'dhcp'},
"dhcp", \$CONFIG{'dhcp'},
"gateway=s", \$CONFIG{'gateway'},
"hostname=s", \$CONFIG{'hostname'},
"ip=s@", \$CONFIG{'ip'},
@@ -1377,29 +1377,29 @@ sub parseCommandLineArguments
"install-source=s", \$CONFIG{'install-source'},
# Misc. options
"accounts!", \$CONFIG{'accounts'},
"accounts", \$CONFIG{'accounts'},
"admins=s", \$CONFIG{'admins'},
"arch=s", \$CONFIG{'arch'},
"fs=s", \$CONFIG{'fs'},
"boot!", \$CONFIG{'boot'},
"boot", \$CONFIG{'boot'},
"cache=s", \$CONFIG{'cache'},
"config=s", \$CONFIG{'config'},
"ide!", \$CONFIG{'ide'},
"ide", \$CONFIG{'ide'},
"install=i", \$CONFIG{'install'},
"hooks=i", \$CONFIG{'hooks'},
"passwd!", \$CONFIG{'passwd'},
"passwd", \$CONFIG{'passwd'},
"partitions=s", \$CONFIG{'partitions'},
"role=s", \$CONFIG{'role'},
"role-args=s", \$CONFIG{'role-args'},
"roledir=s", \$CONFIG{'roledir'},
"force!", \$CONFIG{'force'},
"keep!", \$CONFIG{'keep'},
"force", \$CONFIG{'force'},
"keep", \$CONFIG{'keep'},
"template=s", \$CONFIG{'template'},
"output=s", \$CONFIG{'output'},
"extension=s", \$CONFIG{'extension'},
# Help options
"debug!", \$CONFIG{'debug'},
"debug", \$CONFIG{'debug'},
"help", \$HELP,
"manual", \$MANUAL,
"verbose", \$CONFIG{'verbose'},

8
debian/changelog vendored
View File

@@ -1,11 +1,3 @@
xen-tools (3.9-6) unstable; urgency=low
- Allow command line flags to be unset.
Thanks to Ruud Koolen for the patch.
(Closes: #484338)
-- Steve Kemp <skx@debian.org> Tue, 14 Oct 2008 22:00:22 +0000
xen-tools (3.9-5) unstable; urgency=medium
- Record the ARCH for RPM-based distros.

2
debian/control vendored
View File

@@ -4,7 +4,7 @@ Priority: extra
Maintainer: Roland Stigge <stigge@antcom.de>
Uploaders: Radu Spineanu <radu@debian.org>, Steve Kemp <skx@debian.org>
Build-Depends: debhelper (>= 4.0.0), libtest-pod-perl, libtext-template-perl
Standards-Version: 3.8.0
Standards-Version: 3.7.3
Homepage: http://xen-tools.org/software/xen-tools
Package: xen-tools

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

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

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

0
hooks/centos-4/15-setup-arch Normal file → Executable file
View File

0
hooks/centos-5/15-setup-arch Normal file → Executable file
View File

0
hooks/fedora-core-6/15-setup-arch Normal file → Executable file
View File

0
t/quoted-strings.t Normal file → Executable file
View File