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

2
lxc.js
View File

@ -41,7 +41,7 @@ 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.overlayfs = undefined;
}
Container.prototype.clone = function(callback){