Support the "ks" parameter for Fedora kickstart-based autoinstalls. precise-prod quentin 0.4.23
authorQuentin Smith <quentin@mit.edu>
Sun, 16 Jun 2019 05:28:10 +0000 (01:28 -0400)
committerQuentin Smith <quentin@mit.edu>
Sun, 16 Jun 2019 05:28:10 +0000 (01:28 -0400)
debian/changelog
server/usr/sbin/invirt-remote-create

index ea1250e..4d93bed 100644 (file)
@@ -1,3 +1,9 @@
+invirt-remote (0.4.23) unstable; urgency=low
+
+  * Support the "ks" parameter for Fedora kickstart-based autoinstalls.
+
+ -- Quentin Smith <quentin@mit.edu>  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
index 25a1120..47939e9 100755 (executable)
@@ -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