Auto-merge for PR #486 via VersionBot

Ensure /var/run/resin exists before trying to mount it as tmpfs
This commit is contained in:
resin-io-versionbot[bot]
2017-08-18 22:26:34 +00:00
committed by GitHub
3 changed files with 6 additions and 1 deletions

View File

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY! automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## v6.2.1 - 2017-08-18
* Ensure /var/run/resin exists before trying to mount it as tmpfs #486 [Pablo Carranza Velez]
## v6.2.0 - 2017-08-16 ## v6.2.0 - 2017-08-16
* Try to resume the download of a delta if it fails due to flaky network #483 [Akis Kesoglou] * Try to resume the download of a delta if it fails due to flaky network #483 [Akis Kesoglou]

View File

@ -9,6 +9,7 @@ set -o errexit
[ -d /mnt/root/tmp/resin-supervisor ] || [ -d /mnt/root/tmp/resin-supervisor ] ||
mkdir -p /mnt/root/tmp/resin-supervisor mkdir -p /mnt/root/tmp/resin-supervisor
mkdir -p /var/run/resin
mount -t tmpfs -o size=1m tmpfs /var/run/resin mount -t tmpfs -o size=1m tmpfs /var/run/resin
# If DOCKER_ROOT isn't set then default it # If DOCKER_ROOT isn't set then default it

View File

@ -1,7 +1,7 @@
{ {
"name": "resin-supervisor", "name": "resin-supervisor",
"description": "This is resin.io's Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as Resin's API informs it to.", "description": "This is resin.io's Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as Resin's API informs it to.",
"version": "6.2.0", "version": "6.2.1",
"license": "Apache-2.0", "license": "Apache-2.0",
"repository": { "repository": {
"type": "git", "type": "git",