mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 13:47:54 +00:00
Merge pull request #1625 from balena-io/seperate-separate
typos: seperate -> separate
This commit is contained in:
commit
f391c33cc4
@ -330,7 +330,7 @@ The state is a JSON object that contains some or all of the following:
|
||||
* `api_port`: Port on which the supervisor is listening.
|
||||
* `commit`: Hash of the current commit of the application that is running.
|
||||
* `ip_address`: Space-separated list of IP addresses of the device.
|
||||
* `mac_address`: Space-seperated list of MAC addresses of the device.
|
||||
* `mac_address`: Space-separated list of MAC addresses of the device.
|
||||
* `status`: Status of the device regarding the app, as a string, i.e. "Stopping", "Starting", "Downloading", "Installing", "Idle".
|
||||
* `download_progress`: Amount of the application image that has been downloaded, expressed as a percentage. If the update has already been downloaded, this will be `null`.
|
||||
* `os_version`: Version of the host OS running on the device.
|
||||
|
@ -116,7 +116,7 @@ export class Service {
|
||||
throw new InternalInconsistencyError('Malformed app id for service');
|
||||
}
|
||||
|
||||
// Seperate the application information from the docker
|
||||
// Separate the application information from the docker
|
||||
// container configuration
|
||||
service.imageId = parseInt(appConfig.imageId, 10);
|
||||
delete appConfig.imageId;
|
||||
|
@ -164,7 +164,7 @@ export function getStopSignal(
|
||||
return _.get(imageInfo, 'Config.StopSignal', 'SIGTERM');
|
||||
}
|
||||
|
||||
// TODO: Move healthcheck stuff into seperate module
|
||||
// TODO: Move healthcheck stuff into separate module
|
||||
export function dockerHealthcheckToServiceHealthcheck(
|
||||
healthcheck?: Dockerode.DockerHealthcheck,
|
||||
): ServiceHealthcheck {
|
||||
|
@ -14,7 +14,7 @@ import { ExtraUEnvError } from '../../lib/errors';
|
||||
/**
|
||||
* Entry describes the configurable items in an extra_uEnv file
|
||||
*
|
||||
* @collection - This describes if the value can be a list of items seperated by space character.
|
||||
* @collection - This describes if the value can be a list of items separated by space character.
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -166,7 +166,7 @@ export function safeAppClone(app) {
|
||||
// here as when passing it back as target state, the service class cannot
|
||||
// know that the alias being given is not in fact a user given one.
|
||||
// TODO: Make the process of moving from a current state to a target state
|
||||
// well-defined (and implemented in a seperate module)
|
||||
// well-defined (and implemented in a separate module)
|
||||
const svcCopy = _.cloneDeep(svc);
|
||||
|
||||
_.each(svcCopy.config.networks, (net) => {
|
||||
|
@ -20,7 +20,7 @@ const argv = yargs
|
||||
.command(
|
||||
'$0 <device-address>',
|
||||
'Sync changes in code to a running debug mode supervisor on a local device',
|
||||
y =>
|
||||
(y) =>
|
||||
y.positional('device-address', {
|
||||
type: 'string',
|
||||
describe: 'The address of a local device',
|
||||
@ -70,7 +70,7 @@ const argv = yargs
|
||||
arch: argv['device-arch'],
|
||||
nocache: argv['nocache'],
|
||||
});
|
||||
// Another newline to seperate build and livepush output
|
||||
// Another newline to separate build and livepush output
|
||||
console.log(`Supervisor container: ${containerId}\n`);
|
||||
|
||||
await setupLogs(docker, containerId);
|
||||
|
@ -440,7 +440,7 @@
|
||||
## Hardware decoding of additional codecs can be enabled by purchasing a
|
||||
## license that is locked to the CPU serial number of your Raspberry Pi.
|
||||
##
|
||||
## Up to 8 licenses per CODEC can be specified as a comma seperated list.
|
||||
## Up to 8 licenses per CODEC can be specified as a comma separated list.
|
||||
##
|
||||
################################################################################
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user