From faa65854a2d76093c2460b18804996c072b8a9e7 Mon Sep 17 00:00:00 2001 From: Quentin Smith Date: Sun, 16 Jun 2019 01:28:10 -0400 Subject: [PATCH] Support the "ks" parameter for Fedora kickstart-based autoinstalls. --- 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 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 -- 1.7.9.5