ad7d608011
Reviewed by: Trent Mick <trent.mick@joyent.com> Approved by: Trent Mick <trent.mick@joyent.com>
78 lines
1.8 KiB
JavaScript
78 lines
1.8 KiB
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 2016 Joyent, Inc.
|
|
*
|
|
* `triton fwrule enable ...`
|
|
*/
|
|
|
|
var assert = require('assert-plus');
|
|
var vasync = require('vasync');
|
|
|
|
var common = require('../common');
|
|
var errors = require('../errors');
|
|
|
|
|
|
function do_enable(subcmd, opts, args, cb) {
|
|
assert.func(cb, 'cb');
|
|
|
|
if (opts.help) {
|
|
this.do_help('help', {}, [subcmd], cb);
|
|
return;
|
|
}
|
|
|
|
if (args.length === 0) {
|
|
cb(new errors.UsageError('missing FWRULE argument(s)'));
|
|
return;
|
|
}
|
|
|
|
var tritonapi = this.top.tritonapi;
|
|
common.cliSetupTritonApi({cli: this.top}, function onSetup(setupErr) {
|
|
if (setupErr) {
|
|
cb(setupErr);
|
|
}
|
|
vasync.forEachParallel({
|
|
inputs: args,
|
|
func: function enableOne(id, nextId) {
|
|
tritonapi.enableFirewallRule({ id: id }, function (err) {
|
|
if (err) {
|
|
nextId(err);
|
|
return;
|
|
}
|
|
|
|
console.log('Enabled firewall rule %s', id);
|
|
nextId();
|
|
});
|
|
}
|
|
}, cb);
|
|
});
|
|
}
|
|
|
|
|
|
do_enable.options = [
|
|
{
|
|
names: ['help', 'h'],
|
|
type: 'bool',
|
|
help: 'Show this help.'
|
|
}
|
|
];
|
|
|
|
do_enable.synopses = ['{{name}} {{cmd}} FWRULE [FWRULE ...]'];
|
|
|
|
do_enable.help = [
|
|
'Enable a specific firewall rule.',
|
|
'',
|
|
'{{usage}}',
|
|
'',
|
|
'{{options}}',
|
|
'Where FWRULE is a firewall rule id (full UUID) or short id.'
|
|
].join('\n');
|
|
|
|
do_enable.completionArgtypes = ['tritonfwrule'];
|
|
|
|
module.exports = do_enable;
|