mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 14:13:07 +00:00
91 lines
3.7 KiB
JavaScript
91 lines
3.7 KiB
JavaScript
// Generated by CoffeeScript 1.12.5
|
|
|
|
/*
|
|
Copyright 2017 Resin.io
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
module.exports = {
|
|
signature: 'local ssh [deviceIp]',
|
|
description: 'Get a shell into a resinOS device',
|
|
help: 'Warning: \'resin local ssh\' requires an openssh-compatible client to be correctly\ninstalled in your shell environment. For more information (including Windows\nsupport) please check the README here: https://github.com/resin-io/resin-cli\n\nUse this command to get a shell into the running application container of\nyour device.\n\nThe \'--host\' option will get you a shell into the Host OS of the resinOS device.\nNo option will return a list of containers to enter or you can explicitly select\none by passing its name to the --container option\n\nExamples:\n\n $ resin local ssh\n $ resin local ssh --host\n $ resin local ssh --container chaotic_water\n $ resin local ssh --container chaotic_water --port 22222\n $ resin local ssh --verbose',
|
|
options: [
|
|
{
|
|
signature: 'verbose',
|
|
boolean: true,
|
|
description: 'increase verbosity',
|
|
alias: 'v'
|
|
}, {
|
|
signature: 'host',
|
|
boolean: true,
|
|
description: 'get a shell into the host OS',
|
|
alias: 's'
|
|
}, {
|
|
signature: 'container',
|
|
parameter: 'container',
|
|
"default": null,
|
|
description: 'name of container to access',
|
|
alias: 'c'
|
|
}, {
|
|
signature: 'port',
|
|
parameter: 'port',
|
|
description: 'ssh port number (default: 22222)',
|
|
alias: 'p'
|
|
}
|
|
],
|
|
root: true,
|
|
action: function(params, options, done) {
|
|
var Promise, _, child_process, forms, getSubShellCommand, ref, selectContainerFromDevice, verbose;
|
|
child_process = require('child_process');
|
|
Promise = require('bluebird');
|
|
_ = require('lodash');
|
|
forms = require('resin-sync').forms;
|
|
ref = require('./common'), selectContainerFromDevice = ref.selectContainerFromDevice, getSubShellCommand = ref.getSubShellCommand;
|
|
if (options.host === true && (options.container != null)) {
|
|
throw new Error('Please pass either --host or --container option');
|
|
}
|
|
if (options.port == null) {
|
|
options.port = 22222;
|
|
}
|
|
verbose = options.verbose ? '-vvv' : '';
|
|
return Promise["try"](function() {
|
|
if (params.deviceIp == null) {
|
|
return forms.selectLocalResinOsDevice();
|
|
}
|
|
return params.deviceIp;
|
|
}).then(function(deviceIp) {
|
|
_.assign(options, {
|
|
deviceIp: deviceIp
|
|
});
|
|
if (options.host) {
|
|
return;
|
|
}
|
|
if (options.container == null) {
|
|
return selectContainerFromDevice(deviceIp);
|
|
}
|
|
return options.container;
|
|
}).then(function(container) {
|
|
var command, shellCmd, subShellCommand;
|
|
command = "ssh " + verbose + " -t -p " + options.port + " -o LogLevel=ERROR -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ControlMaster=no root@" + options.deviceIp;
|
|
if (!options.host) {
|
|
shellCmd = '/bin/sh -c $"\'if [ -e /bin/bash ]; then exec /bin/bash; else exec /bin/sh; fi\'"';
|
|
command += " docker exec -ti " + container + " " + shellCmd;
|
|
}
|
|
subShellCommand = getSubShellCommand(command);
|
|
return child_process.spawn(subShellCommand.program, subShellCommand.args, {
|
|
stdio: 'inherit'
|
|
});
|
|
}).nodeify(done);
|
|
}
|
|
};
|