Signed-off-by: Jeffrey Morgan <jmorganca@gmail.com>
This commit is contained in:
Jeffrey Morgan 2015-10-22 14:49:16 -07:00
Родитель 591ec5cbcd
Коммит 32ae93dae7
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -85,9 +85,9 @@ var DockerMachine = {
regenerateCerts: function (machineName = this.name()) {
return util.exec([this.command(), 'tls-regenerate-certs', '-f', machineName]);
},
state: function (machineName = this.name()) {
return this.info(machineName).then(info => {
return info ? info.state : null;
status: function (machineName = this.name()) {
return util.exec([this.command(), 'status', machineName]).then(stdout => {
return Promise.resolve(stdout.trim().replace('\n', ''));
});
},
disk: function (machineName = this.name()) {

Просмотреть файл

@ -73,7 +73,7 @@ export default {
} catch (err) {}
await machine.create();
} else {
let state = await machine.state();
let state = await machine.status();
if (state !== 'Running') {
if (state === 'Saved') {
router.get().transitionTo('setup');