From 4801dff9f386623c83782f01dd8f3eed89dfff47 Mon Sep 17 00:00:00 2001 From: Quentin Smith Date: Mon, 27 Dec 2010 01:28:24 -0500 Subject: [PATCH] Allow "preseed" as a valid installation option. --- debian/changelog | 6 ++++++ server/usr/sbin/invirt-remote-create | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index ef83ffa..6a92571 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +invirt-remote (0.4.8) unstable; urgency=low + + * Allow "preseed" as a valid installation option. + + -- Quentin Smith Mon, 27 Dec 2010 01:28:05 -0500 + invirt-remote (0.4.7) unstable; urgency=low * Minor fix of 0.4.6 diff --git a/server/usr/sbin/invirt-remote-create b/server/usr/sbin/invirt-remote-create index 3bffba2..9f5817a 100755 --- a/server/usr/sbin/invirt-remote-create +++ b/server/usr/sbin/invirt-remote-create @@ -42,7 +42,7 @@ def main(argv): if operation == 'install': options = dict(arg.split('=', 1) for arg in args) - valid_keys = set(('mirror', 'dist', 'arch', 'imagesize', 'noinstall')) + valid_keys = set(('mirror', 'dist', 'arch', 'imagesize', 'noinstall', 'preseed')) if not set(options.keys()).issubset(valid_keys): print >> sys.stderr, "Invalid argument. Use the help command to see valid arguments to install" return 1 -- 1.7.9.5