mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-21 22:47:48 +00:00
131 lines
3.3 KiB
CoffeeScript
131 lines
3.3 KiB
CoffeeScript
###
|
|
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.
|
|
###
|
|
|
|
CONFIGURATION_SCHEMA =
|
|
mapper: [
|
|
{
|
|
template:
|
|
hostname: '{{hostname}}'
|
|
persistentLogging: '{{persistentLogging}}'
|
|
domain: [
|
|
[ 'config_json', 'hostname' ]
|
|
[ 'config_json', 'persistentLogging' ]
|
|
]
|
|
}
|
|
{
|
|
template:
|
|
wifi:
|
|
ssid: '{{networkSsid}}'
|
|
'wifi-security':
|
|
psk: '{{networkKey}}'
|
|
domain: [
|
|
[ 'system_connections', 'resin-sample', 'wifi' ]
|
|
[ 'system_connections', 'resin-sample', 'wifi-security' ]
|
|
]
|
|
}
|
|
]
|
|
files:
|
|
system_connections:
|
|
fileset: true
|
|
type: 'ini'
|
|
location:
|
|
path: 'system-connections'
|
|
partition:
|
|
primary: 1
|
|
config_json:
|
|
type: 'json'
|
|
location:
|
|
path: 'config.json'
|
|
partition:
|
|
primary: 1
|
|
|
|
module.exports =
|
|
signature: 'local configure <target>'
|
|
description: '(Re)configure a resinOS drive or image'
|
|
help: '''
|
|
Use this command to configure or reconfigure a resinOS drive or image.
|
|
|
|
Examples:
|
|
|
|
$ resin local configure /dev/sdc
|
|
$ resin local configure path/to/image.img
|
|
'''
|
|
root: true
|
|
action: (params, options, done) ->
|
|
_ = require('lodash')
|
|
Promise = require('bluebird')
|
|
umount = require('umount')
|
|
umountAsync = Promise.promisify(umount.umount)
|
|
isMountedAsync = Promise.promisify(umount.isMounted)
|
|
inquirer = require('inquirer')
|
|
reconfix = require('reconfix')
|
|
denymount = Promise.promisify(require('denymount'))
|
|
|
|
isMountedAsync(params.target).then (isMounted) ->
|
|
return if not isMounted
|
|
umountAsync(params.target)
|
|
.then ->
|
|
denymount params.target, (cb) ->
|
|
reconfix.readConfiguration(CONFIGURATION_SCHEMA, params.target).then (data) ->
|
|
|
|
# `persistentLogging` can be `undefined`, so we want
|
|
# to make sure that case defaults to `false`
|
|
data.persistentLogging = data.persistentLogging or false
|
|
|
|
inquirer.prompt([
|
|
{
|
|
message: 'Network SSID'
|
|
type: 'input'
|
|
name: 'networkSsid'
|
|
default: data.networkSsid
|
|
}
|
|
{
|
|
message: 'Network Key'
|
|
type: 'input'
|
|
name: 'networkKey'
|
|
default: data.networkKey
|
|
}
|
|
{
|
|
message: 'Do you want to set advanced settings?'
|
|
type: 'confirm'
|
|
name: 'advancedSettings'
|
|
default: false
|
|
}
|
|
{
|
|
message: 'Device Hostname'
|
|
type: 'input'
|
|
name: 'hostname'
|
|
default: data.hostname,
|
|
when: (answers) ->
|
|
answers.advancedSettings
|
|
}
|
|
{
|
|
message: 'Do you want to enable persistent logging?'
|
|
type: 'confirm'
|
|
name: 'persistentLogging'
|
|
default: data.persistentLogging
|
|
when: (answers) ->
|
|
answers.advancedSettings
|
|
}
|
|
]).then (answers) ->
|
|
return _.merge(data, answers)
|
|
.then (answers) ->
|
|
reconfix.writeConfiguration(CONFIGURATION_SCHEMA, answers, params.target)
|
|
.asCallback(cb)
|
|
.then ->
|
|
console.log('Done!')
|
|
.asCallback(done)
|