2016-01-04 03:58:51 +00:00
|
|
|
###
|
2017-06-14 21:20:15 +00:00
|
|
|
Copyright 2016-2017 Resin.io
|
2016-01-04 03:58:51 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
###
|
|
|
|
|
2015-03-12 16:03:59 +00:00
|
|
|
_ = require('lodash')
|
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
exports.yes =
|
|
|
|
signature: 'yes'
|
|
|
|
description: 'confirm non interactively'
|
|
|
|
boolean: true
|
|
|
|
alias: 'y'
|
|
|
|
|
2015-03-12 16:03:59 +00:00
|
|
|
exports.optionalApplication =
|
2015-01-15 17:10:14 +00:00
|
|
|
signature: 'application'
|
|
|
|
parameter: 'application'
|
2015-03-23 12:17:55 +00:00
|
|
|
description: 'application name'
|
2015-01-15 17:10:14 +00:00
|
|
|
alias: [ 'a', 'app' ]
|
2015-03-12 16:03:59 +00:00
|
|
|
|
|
|
|
exports.application = _.defaults
|
2015-01-15 17:10:14 +00:00
|
|
|
required: 'You have to specify an application'
|
2015-03-12 16:03:59 +00:00
|
|
|
, exports.optionalApplication
|
2015-02-03 18:52:17 +00:00
|
|
|
|
2015-05-28 16:32:08 +00:00
|
|
|
exports.optionalDevice =
|
|
|
|
signature: 'device'
|
|
|
|
parameter: 'device'
|
2016-01-28 13:10:11 +00:00
|
|
|
description: 'device uuid'
|
2015-05-28 16:32:08 +00:00
|
|
|
alias: 'd'
|
|
|
|
|
2017-11-16 18:09:20 +00:00
|
|
|
exports.optionalDeviceApiKey =
|
|
|
|
signature: 'deviceApiKey'
|
|
|
|
description: 'custom device key - note that this is only supported on ResinOS 2.0.3+'
|
|
|
|
parameter: 'device-api-key'
|
|
|
|
alias: 'k'
|
|
|
|
|
2015-05-28 16:32:08 +00:00
|
|
|
exports.booleanDevice =
|
|
|
|
signature: 'device'
|
2016-01-28 13:10:11 +00:00
|
|
|
description: 'device'
|
2015-05-28 16:32:08 +00:00
|
|
|
boolean: true
|
|
|
|
alias: 'd'
|
|
|
|
|
2017-06-08 19:58:37 +00:00
|
|
|
exports.osVersion =
|
|
|
|
signature: 'version'
|
|
|
|
description: """
|
|
|
|
exact version number, or a valid semver range,
|
|
|
|
or 'latest' (includes pre-releases),
|
|
|
|
or 'default' (excludes pre-releases if at least one stable version is available),
|
|
|
|
or 'recommended' (excludes pre-releases, will fail if only pre-release versions are available),
|
|
|
|
or 'menu' (will show the interactive menu)
|
|
|
|
"""
|
|
|
|
parameter: 'version'
|
|
|
|
|
2015-02-03 18:52:17 +00:00
|
|
|
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'
|
2016-10-26 14:46:20 +00:00
|
|
|
|
|
|
|
exports.forceUpdateLock =
|
|
|
|
signature: 'force'
|
|
|
|
description: 'force action if the update lock is set'
|
|
|
|
boolean: true
|
|
|
|
alias: 'f'
|
2017-06-14 21:51:56 +00:00
|
|
|
|
|
|
|
exports.drive =
|
|
|
|
signature: 'drive'
|
|
|
|
description: 'the drive to write the image to, like `/dev/sdb` or `/dev/mmcblk0`.
|
|
|
|
Careful with this as you can erase your hard drive.
|
|
|
|
Check `resin util available-drives` for available options.'
|
|
|
|
parameter: 'drive'
|
|
|
|
alias: 'd'
|
|
|
|
|
|
|
|
exports.advancedConfig =
|
|
|
|
signature: 'advanced'
|
|
|
|
description: 'show advanced configuration options'
|
|
|
|
boolean: true
|
|
|
|
alias: 'v'
|
2017-12-18 13:31:07 +00:00
|
|
|
|
|
|
|
exports.hostOSAccess =
|
|
|
|
signature: 'host'
|
|
|
|
boolean: true
|
|
|
|
description: 'access host OS (for devices with Resin OS >= 2.7.5)'
|
|
|
|
alias: 's'
|