From 66a4bf4ab38fd76d26e88fccd03fe4f2cd76579c Mon Sep 17 00:00:00 2001 From: Praneeth Bodduluri Date: Thu, 24 Sep 2015 01:34:00 +0530 Subject: [PATCH] Remove unused config.supervisorContainer in config.coffee --- CHANGELOG.md | 1 + src/config.coffee | 16 ---------------- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e27be806..b5d6b83a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +* Remove unused config.supervisorContainer in config.coffee [Praneeth] * Bind mount /boot in Raspberry Pis [Pablo] * Implement and use golang endpoint for getting IPs of the device, also fixes duplicate IP reporting in the JS implementation [Praneeth] * Refactor bootstrapping to run in background [Pablo] diff --git a/src/config.coffee b/src/config.coffee index f08d61f4..600a2e43 100644 --- a/src/config.coffee +++ b/src/config.coffee @@ -26,19 +26,3 @@ module.exports = config = successMessage: 'SUPERVISOR OK' forceApiSecret: process.env.RESIN_SUPERVISOR_SECRET ? null vpnStatusPath: process.env.VPN_STATUS_PATH ? '/mnt/root/run/openvpn/vpn_status' - -config.supervisorContainer = - Volumes: - '/boot/config.json': {} - '/data': {} - '/run/docker.sock': {} - '/mnt/fib_trie': {} - '/var/log': {} - Binds: [ - config.configMountPoint + ':/boot/config.json' - '/var/run/docker.sock:/run/docker.sock' - '/resin-data/resin-supervisor:/data' - '/proc/net/fib_trie:/mnt/fib_trie' - '/var/log/supervisor-log:/var/log' - '/etc/resolv.conf:/etc/resolv.conf:rw' - ]