Add the Anders invoke for dealing with kernel command line quoting in sipb-xen-autoinstaller/2.8
authorEvan Broder <broder@mit.edu>
Tue, 14 Oct 2008 01:19:09 +0000 (21:19 -0400)
committerEvan Broder <broder@mit.edu>
Tue, 14 Oct 2008 01:19:09 +0000 (21:19 -0400)
sipb-xen-autoinstaller-guest

svn path=/trunk/packages/sipb-xen-autoinstaller/; revision=1105

debian/changelog
guest/etc/init.d/rcS.sipb-xen [changed mode: 0644->0755]

index e5a5349..8815232 100644 (file)
@@ -1,3 +1,10 @@
+sipb-xen-autoinstaller (2.8) unstable; urgency=low
+
+  * Correctly evaluate the kernel command line to deal with weird
+    potential quoting issues
+
+ -- Evan Broder <broder@mit.edu>  Mon, 13 Oct 2008 21:18:22 -0400
+
 sipb-xen-autoinstaller (2.7) unstable; urgency=low
 
   * Skip kpartx call when running on physical devices
old mode 100644 (file)
new mode 100755 (executable)
index 103c195..2db4da6
@@ -1,5 +1,6 @@
 #!/bin/bash
-for x in $(cat /proc/cmdline); do
+eval "set -- $(cat /proc/cmdline)"
+for x; do
     case $x in
        ip=*)
        /usr/lib/klibc/bin/ipconfig -d ${x#ip=}