This repository has been archived on 2020-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
node-spearhead/lib/do_services.js

59 lines
1.2 KiB
JavaScript
Raw Normal View History

2015-08-27 02:56:18 +03:00
/*
* Copyright 2015 Joyent Inc.
*
* `triton services ...`
*/
var common = require('./common');
function do_services(subcmd, opts, args, callback) {
if (opts.help) {
this.do_help('help', {}, [subcmd], callback);
return;
} else if (args.length !== 0) {
callback(new Error('invalid args: ' + args));
return;
}
this.triton.cloudapi.listServices(function (err, services) {
if (err) {
callback(err);
return;
}
if (opts.json) {
console.log(JSON.stringify(services));
} else {
// pretty print
Object.keys(services).forEach(function (key) {
var val = services[key];
console.log('%s: %s', key, val);
});
}
callback();
});
}
do_services.options = [
{
names: ['help', 'h'],
type: 'bool',
help: 'Show this help.'
},
{
names: ['json', 'j'],
type: 'bool',
help: 'JSON output.'
}
];
do_services.help = (
'Show services information\n'
+ '\n'
+ 'Usage:\n'
+ ' {{name}} services\n'
+ '\n'
+ '{{options}}'
);
module.exports = do_services;