This commit is contained in:
William Mantly 2016-02-08 17:22:51 -05:00
parent 2dba8c9c4f
commit e481f1c071

4
lxc.js
View File

@ -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){