summaryrefslogtreecommitdiffstats
path: root/os-plugins/slxos-plugin
diff options
context:
space:
mode:
authorvolker2010-06-30 17:25:02 +0200
committervolker2010-06-30 17:25:02 +0200
commit9224d7322119addf84b30da903d1a1303662a2ef (patch)
treeac81b3ea02c8f2b9e56e7b6421531636c43e63af /os-plugins/slxos-plugin
parentvmversion is 6 or 7 when workstation is installed as well (diff)
downloadcore-9224d7322119addf84b30da903d1a1303662a2ef.tar.gz
core-9224d7322119addf84b30da903d1a1303662a2ef.tar.xz
core-9224d7322119addf84b30da903d1a1303662a2ef.zip
slxos-plugin install <vendorOS> plugin plugin::attribute1="foo=bar=baz"
matches now the first '=' and not the last...
Diffstat (limited to 'os-plugins/slxos-plugin')
-rwxr-xr-xos-plugins/slxos-plugin2
1 files changed, 1 insertions, 1 deletions
diff --git a/os-plugins/slxos-plugin b/os-plugins/slxos-plugin
index a725b886..ccd3d389 100755
--- a/os-plugins/slxos-plugin
+++ b/os-plugins/slxos-plugin
@@ -285,7 +285,7 @@ sub parsePluginAttrs
my (%pluginAttrs, $pluginName, @attrSpecs);
for my $arg (@ARGV) {
- if ($arg =~ m{^(.+)=(.*)$}) {
+ if ($arg =~ m{^(.+?)=(.*)$}) {
next if !$acceptAttributes;
my $attr = $1;
my $value = $2;