diff --git a/PVE/CLI/pve5to6.pm b/PVE/CLI/pve5to6.pm index 622833b7..47469081 100644 --- a/PVE/CLI/pve5to6.pm +++ b/PVE/CLI/pve5to6.pm @@ -412,8 +412,9 @@ __PACKAGE__->register_method ({ return undef; }}); -our $cmddef = { - checklist => [ __PACKAGE__, 'checklist', [], {}], -}; +our $cmddef = [ __PACKAGE__, 'checklist', [], {}]; + +# for now drop all unknown params and just check +@ARGV = (); 1;