mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 13:47:52 +00:00
5cbe1c410f
Both commands work with local devices by remotely invoking the `os-config` executable via SSH. This requires an as of yet unreleased resinOS (that will most likely be v2.14) and the commands ascertain compatibility merely by looking for the `os-config` executable in the device, and bail out if it’s not present. `join` and `leave` accept a couple of optional arguments and implement a wizard-style interface if these are not given. They allow to interactively select the device and the application to promote to. If the user has no apps, `join` will offer the user to create one. `join` will also offer the user to login or create an account if they’re not logged in already without exiting the wizard. `resin-sync` (that's used internally to discover local devices) requires admin privileges. If no device has been specified as an argument, the commands will launch the device scanning process in a privileged subprocess via two new internal commands: `internal sudo` and `internal scanDevices`. This avoids having the user to invoke the commands with sudo and only request escalation if truly needed. This commit also removes the dependency to “president”, implementing “sudo” functionality within the CLI. Change-Type: minor
27 lines
595 B
TypeScript
27 lines
595 B
TypeScript
import { spawn } from 'child_process';
|
|
|
|
import * as Bluebird from 'bluebird';
|
|
import * as rindle from 'rindle';
|
|
|
|
export async function executeWithPrivileges(
|
|
command: string[],
|
|
stderr?: NodeJS.WritableStream,
|
|
): Promise<void> {
|
|
const opts = {
|
|
stdio: ['inherit', 'inherit', stderr ? 'pipe' : 'inherit'],
|
|
env: process.env,
|
|
};
|
|
|
|
const args = process.argv
|
|
.slice(0, 2)
|
|
.concat(['internal', 'sudo', command.join(' ')]);
|
|
|
|
const ps = spawn(args[0], args.slice(1), opts);
|
|
|
|
if (stderr) {
|
|
ps.stderr.pipe(stderr);
|
|
}
|
|
|
|
return Bluebird.fromCallback(resolver => rindle.wait(ps, resolver));
|
|
}
|