Do not bind mount /run/dbus to /run/dbus

This commit is contained in:
Pablo Carranza Velez 2016-07-16 16:28:16 +00:00
parent 711a9a8e22
commit 0609619863
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] * Default to not bind mounting kmod if container distro can't be found [Pablo]
* Use log-timestamp to add timestamps to logs [Pablo] * Use log-timestamp to add timestamps to logs [Pablo]

View File

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