summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/vmchooser/XX_vmchooser.sh
diff options
context:
space:
mode:
authorMichael Janczyk2009-03-05 23:20:05 +0100
committerMichael Janczyk2009-03-05 23:20:05 +0100
commit13fd19d955a009fcbcd249ea5d4035b737470102 (patch)
tree092cccf695202cf218d02ce7e565bc26b3252ecc /os-plugins/plugins/vmchooser/XX_vmchooser.sh
parentchanged hotkey true to lowercase, uppercase does not work :( (diff)
downloadcore-13fd19d955a009fcbcd249ea5d4035b737470102.tar.gz
core-13fd19d955a009fcbcd249ea5d4035b737470102.tar.xz
core-13fd19d955a009fcbcd249ea5d4035b737470102.zip
lost track of my changes, forgot to correct var in XX_vmchooser.sh
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2684 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/vmchooser/XX_vmchooser.sh')
-rw-r--r--os-plugins/plugins/vmchooser/XX_vmchooser.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/os-plugins/plugins/vmchooser/XX_vmchooser.sh b/os-plugins/plugins/vmchooser/XX_vmchooser.sh
index 74c53c8e..2a21357c 100644
--- a/os-plugins/plugins/vmchooser/XX_vmchooser.sh
+++ b/os-plugins/plugins/vmchooser/XX_vmchooser.sh
@@ -54,14 +54,14 @@ if [ -e $CONFFILE ]; then
waitfor /etc/hwinfo.cdrom
j=0
for i in $(cat /etc/hwinfo.cdrom); do
- echo "cdrom$j=$i" >> /mnt/etc/opt/openslx/run-virt.include
+ echo "cdrom_$j=$i" >> /mnt/etc/opt/openslx/run-virt.include
j=$(expr $j + 1)
done
waitfor /etc/hwinfo.floppy
j=0
for i in $(cat /etc/hwinfo.floppy); do
- echo "floppy$j=$i" >> /mnt/etc/opt/openslx/run-virt.include
+ echo "floppy_$j=$i" >> /mnt/etc/opt/openslx/run-virt.include
j=$(expr $j + 1)
done