Calls to opt_add_arg() in the inst module still use the old way to
specify option flags, which is incompatible with the current opt
module.
This commit changes the calls to pass the option flags in the new way.
return 1
fi
- opt_add_arg "l" "list" "no" 0 "List running instances" _inst_handle_opt
- opt_add_arg "s" "stop" "yes" "" "Stop a running instance" _inst_handle_opt
+ opt_add_arg "l" "list" "" 0 "List running instances" _inst_handle_opt
+ opt_add_arg "s" "stop" "v" "" "Stop a running instance" _inst_handle_opt
return 0
}