Merge pull request #210 from resin-io/208-remove-run-dbus

Do not bind mount /run/dbus to /run/dbus
This commit is contained in:
Pablo Carranza Vélez 2016-07-19 14:52:42 -03:00 committed by GitHub
commit 965b75816d
2 changed files with 1 additions and 2 deletions

View File

@ -1,3 +1,4 @@
* **[Breaking]** Do not bind mount /run/dbus to /run/dbus [Pablo]
* Default to not bind mounting kmod if container distro can't be found [Pablo]
* Use log-timestamp to add timestamps to logs [Pablo]

View File

@ -180,14 +180,12 @@ application.start = start = (app) ->
'/data': {}
'/lib/modules': {}
'/lib/firmware': {}
'/run/dbus': {}
'/host/var/lib/connman': {}
'/host/run/dbus': {}
binds = [
config.dataPath + '/' + app.appId + ':/data'
'/lib/modules:/lib/modules'
'/lib/firmware:/lib/firmware'
'/run/dbus:/run/dbus'
'/run/dbus:/host_run/dbus'
'/run/dbus:/host/run/dbus'
'/etc/resolv.conf:/etc/resolv.conf:rw'