This commit is contained in:
Dave Eddy 2015-08-26 02:00:26 -04:00
parent 40c710d601
commit 1d6a8178bd
2 changed files with 12 additions and 12 deletions

View File

@ -80,7 +80,7 @@ do_delete_instance.help = [
' {{name}} delete <alias|id>', ' {{name}} delete <alias|id>',
'', '',
'{{options}}' '{{options}}'
]; ].join('\n');
do_delete_instance.options = [ do_delete_instance.options = [
{ {
names: ['help', 'h'], names: ['help', 'h'],

View File

@ -24,18 +24,18 @@ function do_startstop_instance(action) {
f(' {{name}} %s <alias|id>', action), f(' {{name}} %s <alias|id>', action),
f(''), f(''),
f('{{options}}') f('{{options}}')
]; ].join('\n');
_do_startstop_instance.options = [ _do_startstop_instance.options = [
{ {
names: ['help', 'h'], names: ['help', 'h'],
type: 'bool', type: 'bool',
help: 'Show this help.' help: 'Show this help.'
}, },
{ {
names: ['wait', 'w'], names: ['wait', 'w'],
type: 'bool', type: 'bool',
help: 'Block until desired state is reached.' help: 'Block until desired state is reached.'
}, },
]; ];
return _do_startstop_instance; return _do_startstop_instance;