mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-22 15:02:22 +00:00
39 lines
762 B
JavaScript
39 lines
762 B
JavaScript
|
(function() {
|
||
|
exports.yes = {
|
||
|
signature: 'yes',
|
||
|
description: 'confirm non interactively',
|
||
|
boolean: true,
|
||
|
alias: 'y'
|
||
|
};
|
||
|
|
||
|
exports.application = {
|
||
|
signature: 'application',
|
||
|
parameter: 'application',
|
||
|
description: 'application id',
|
||
|
alias: ['a', 'app'],
|
||
|
required: 'You have to specify an application'
|
||
|
};
|
||
|
|
||
|
exports.network = {
|
||
|
signature: 'network',
|
||
|
parameter: 'network',
|
||
|
description: 'network type',
|
||
|
alias: 'n'
|
||
|
};
|
||
|
|
||
|
exports.wifiSsid = {
|
||
|
signature: 'ssid',
|
||
|
parameter: 'ssid',
|
||
|
description: 'wifi ssid, if network is wifi',
|
||
|
alias: 's'
|
||
|
};
|
||
|
|
||
|
exports.wifiKey = {
|
||
|
signature: 'key',
|
||
|
parameter: 'key',
|
||
|
description: 'wifi key, if network is wifi',
|
||
|
alias: 'k'
|
||
|
};
|
||
|
|
||
|
}).call(this);
|