From 2948087724973cca811ac4bc98dbad45fd6605e4 Mon Sep 17 00:00:00 2001 From: william Date: Fri, 29 Jan 2016 17:38:40 -0500 Subject: [PATCH] formating --- lxc.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lxc.js b/lxc.js index 33e0bbd..964c6a7 100644 --- a/lxc.js +++ b/lxc.js @@ -28,7 +28,6 @@ module.exports = function(config){ }; obj.startEphemeral = function(name, base_name, callback){ - var output = ''; sysExec('lxc-start-ephemeral -o '+base_name+ ' -n '+name +' --union-type overlayfs -d', function(data){ if(data.match("doesn't exist.")) return callback({status: 500, error: "doesn't exist."}); @@ -43,7 +42,6 @@ module.exports = function(config){ sysExec('lxc-stop -n '+ name, callback); }; - obj.freeze = function(name, cbComplete, cbData){ sysExec('lxc-freeze -n '+name, cbComplete, cbData); };