summaryrefslogtreecommitdiffstats
path: root/remote/modules/vmplayer/data
diff options
context:
space:
mode:
authorSimon Rettberg2013-07-12 19:51:21 +0200
committerSimon Rettberg2013-07-12 19:51:21 +0200
commit64bdaa5ae643b44733d821feb8ae349f2920c4c1 (patch)
tree4efc4c3165703938c02ea33d46ce8f2427856a3e /remote/modules/vmplayer/data
parent[vmplayer] More updates to hw-config setup (diff)
downloadtm-scripts-64bdaa5ae643b44733d821feb8ae349f2920c4c1.tar.gz
tm-scripts-64bdaa5ae643b44733d821feb8ae349f2920c4c1.tar.xz
tm-scripts-64bdaa5ae643b44733d821feb8ae349f2920c4c1.zip
[vmchooser] Try to refine calculation of amount of memory to assign to VM
Diffstat (limited to 'remote/modules/vmplayer/data')
-rw-r--r--remote/modules/vmplayer/data/etc/openslx/vmware/run-virt.include4
1 files changed, 2 insertions, 2 deletions
diff --git a/remote/modules/vmplayer/data/etc/openslx/vmware/run-virt.include b/remote/modules/vmplayer/data/etc/openslx/vmware/run-virt.include
index 1178ca2f..5ac0454a 100644
--- a/remote/modules/vmplayer/data/etc/openslx/vmware/run-virt.include
+++ b/remote/modules/vmplayer/data/etc/openslx/vmware/run-virt.include
@@ -21,9 +21,9 @@
function clean_string ()
{
if [ "$#" -ge 1 ]; then
- echo "$@" | tr '[:upper:]' '[:lower:]' | tr -d '\t _./'
+ echo "$@" | tr '[A-Z]' '[a-z]' | tr -d '\t _./'
else
- cat - | tr '[:upper:]' '[:lower:]' | tr -d '\t _./'
+ cat - | tr '[A-Z]' '[a-z]' | tr -d '\t _./'
fi
}