From: Quentin Smith Date: Sun, 16 Jun 2019 05:28:10 +0000 (-0400) Subject: Support the "ks" parameter for Fedora kickstart-based autoinstalls. X-Git-Tag: 0.4.23^0 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-remote.git/commitdiff_plain/refs/heads/precise-prod Support the "ks" parameter for Fedora kickstart-based autoinstalls. --- diff --git a/debian/changelog b/debian/changelog index ea1250e..4d93bed 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +invirt-remote (0.4.23) unstable; urgency=low + + * Support the "ks" parameter for Fedora kickstart-based autoinstalls. + + -- Quentin Smith Sun, 16 Jun 2019 01:28:02 -0400 + invirt-remote (0.4.22) precise; urgency=low * Kill arpspoof with SIGKILL when we're done with it so it doesn't try diff --git a/server/usr/sbin/invirt-remote-create b/server/usr/sbin/invirt-remote-create index 25a1120..47939e9 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', 'preseed')) + valid_keys = set(('mirror', 'dist', 'arch', 'imagesize', 'noinstall', 'ks', '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