mirror of https://github.com/docker/docs.git
Remove unused function
This commit is contained in:
parent
4a4c0628a9
commit
7817f9bf3f
|
@ -38,9 +38,6 @@ var VirtualBox = {
|
||||||
wake: function (name) {
|
wake: function (name) {
|
||||||
return util.exec([this.command(), 'startvm', name, '--type', 'headless']);
|
return util.exec([this.command(), 'startvm', name, '--type', 'headless']);
|
||||||
},
|
},
|
||||||
poweroff: function (name) {
|
|
||||||
return util.exec([this.command(), 'controlvm', name, 'poweroff']);
|
|
||||||
},
|
|
||||||
vmstate: function (name) {
|
vmstate: function (name) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
util.exec([this.command(), 'showvminfo', name, '--machinereadable']).then(stdout => {
|
util.exec([this.command(), 'showvminfo', name, '--machinereadable']).then(stdout => {
|
||||||
|
|
Loading…
Reference in New Issue