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>',
'',
'{{options}}'
];
].join('\n');
do_delete_instance.options = [
{
names: ['help', 'h'],

View File

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