2bad27fcbb
Reviewed by: Julien Gilli <julien.gilli@joyent.com>
29 lines
792 B
JavaScript
29 lines
792 B
JavaScript
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
/*
|
|
* Copyright 2017 Joyent, Inc.
|
|
*
|
|
* `triton reboot ...` bwcompat shortcut for `triton instance reboot ...`.
|
|
*/
|
|
|
|
var targ = require('./do_instance/do_reboot');
|
|
|
|
function do_reboot(subcmd, opts, args, callback) {
|
|
this.handlerFromSubcmd('instance').dispatch({
|
|
subcmd: 'reboot',
|
|
opts: opts,
|
|
args: args
|
|
}, callback);
|
|
}
|
|
|
|
do_reboot.help = 'A shortcut for "triton instance reboot".\n' + targ.help;
|
|
do_reboot.synopses = targ.synopses;
|
|
do_reboot.options = targ.options;
|
|
do_reboot.completionArgtypes = targ.completionArgtypes;
|
|
|
|
module.exports = do_reboot;
|