mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-05-31 14:50:47 +00:00
Auto-merge for PR #486 via VersionBot
Ensure /var/run/resin exists before trying to mount it as tmpfs
This commit is contained in:
commit
2da570700d
@ -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!
|
||||
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
|
||||
|
||||
* Try to resume the download of a delta if it fails due to flaky network #483 [Akis Kesoglou]
|
||||
|
1
entry.sh
1
entry.sh
@ -9,6 +9,7 @@ set -o errexit
|
||||
[ -d /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
|
||||
|
||||
# If DOCKER_ROOT isn't set then default it
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"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.",
|
||||
"version": "6.2.0",
|
||||
"version": "6.2.1",
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
Loading…
x
Reference in New Issue
Block a user