From e481f1c071bdf4636f73b325e10cb9c09f9554fb Mon Sep 17 00:00:00 2001 From: william Date: Mon, 8 Feb 2016 17:22:51 -0500 Subject: [PATCH] stuff --- lxc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lxc.js b/lxc.js index 9dddca5..1baa632 100644 --- a/lxc.js +++ b/lxc.js @@ -40,8 +40,8 @@ function sysExec(command, callback){ var Container = function(config){ this.name = config.name; this.state = config.state || 'STOPPED'; - this.ip = config.ip || (config.ipv4 || '').replace('-', '') || null ; - this.overlayfs = null + this.ip = config.ip || (config.ipv4 || '').replace('-', '') || null; + this.overlayfs = undefined; } Container.prototype.clone = function(callback){