-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathexample-promise.js
74 lines (64 loc) · 1.67 KB
/
example-promise.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env node
var fs = require('fs');
var vagrant = require('../index');
vagrant.promisify();
process.env.NODE_DEBUG = true;
vagrant.globalStatus().then(console.log.bind(console));
vagrant.version().then(console.log.bind(console));
vagrant.versionStatus().then(console.log.bind(console));
var machine = vagrant.create({ cwd: process.cwd(), env: process.env });
machine.on('progress', function () {
console.log('download progress: ', [].slice.call(arguments));
});
machine.on('up-progress', function () {
console.log('up progress: ', [].slice.call(arguments));
});
var config = {
config: {
vm: {
box: 'ubuntu/trusty64'
}
}
};
machine.init('ubuntu/trusty64', config)
.then(function (out) {
return machine.up();
}, function (err) {
throw new Error(err);
})
.then(function (out) {
return machine.status();
}, function (err) {
throw new Error(err);
})
.then(function (out) {
console.log(out);
return machine.sshConfig();
})
.then(function (out) {
console.log(out);
return machine.suspend();
})
.then(function (out) {
console.log(out);
return machine.resume();
})
.then(function (out) {
console.log(out);
return machine.halt();
})
.then(function (out) {
console.log(out);
return machine.destroy();
})
.then(function (out) {
console.log(out);
return vagrant.globalStatus();
})
.then(function (out) {
console.log(out);
fs.unlinkSync('./Vagrantfile');
})
.catch(function (err) {
console.log('Caught an error\n', err);
});