* `xen-list-images` does not honour `--extension`
-* `--extension=''` (i.e. empty string) no more works
-
Bugs to fix later
-----------------
"keep", \$CONFIG{ 'keep' },
"template=s", \&checkOption,
"output=s", \&checkOption,
- "extension=s", \&checkOption,
+ "extension:s", \&checkOption,
"dontformat", \&checkOption,
# Help options
#
GetOptions( "admins=s", \$ENV{ 'admins' },
"output=s", \$CONFIG{ 'output' },
- "extension=s", \$CONFIG{ 'extension' },
+ "extension:s", \$CONFIG{ 'extension' },
"template=s", \$CONFIG{ 'template' },
"verbose", \$CONFIG{ 'verbose' },
"help", \$HELP,
- Also recognize "M" and "G" instead of "MB" and "GB" as size unit for
--memory. (Closes: #691320) Document the recognized units.
- Default DomUs to use the noop scheduler (Closes: #693131)
+ - Fixes "--extension=" with empty parameter.
- Remove CVS revisions from --version output
- Preliminary support for Debian Jessie and Ubuntu Raring
- Preliminary support for xl toolstack
}
#print " - remove quotes : $o ";
#
- # Discard anything after "=", or " "
+ # Discard anything after "=", ":", or " "
#
- if ( $o =~ /(.*)[ \t=]+(.*)/ )
+ if ( $o =~ /(.*)[ \t=:]+(.*)/ )
{
$o = $1;
}