-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathexample.js
85 lines (63 loc) · 2.18 KB
/
example.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
75
76
77
78
79
80
81
82
83
84
#!/usr/bin/env node
var fs = require('fs');
var vagrant = require('../index');
process.env.NODE_DEBUG = true;
vagrant.globalStatus(function (err, out) {
console.log(err, out);
});
vagrant.version(function (err, out) {
console.log(err, out);
});
vagrant.versionStatus(function (err, out) {
console.log(err, out);
});
var machine = vagrant.create({ cwd: process.cwd(), env: process.env });
function onInit(err, out) {
if (err) {
throw new Error(err);
}
/* eslint no-unused-vars: ["error", { "args": "none" }] */
machine.on('progress', function () {
console.log('download progress: ', [].slice.call(arguments));
});
machine.on('up-progress', function () {
console.log('up progress: ', [].slice.call(arguments));
});
machine.up(function (err, out) {
if (err) {
throw new Error(err);
}
machine.status(function (err, out) {
console.log(err, out);
machine.sshConfig(function (err, out) {
console.log(err, out);
machine.suspend(function (err, out) {
console.log(err, out);
machine.resume(function (err, out) {
console.log(err, out);
machine.halt(function (err, out) {
console.log(err, out);
machine.destroy(function (err, out) {
console.log(err, out);
vagrant.globalStatus(function (err, out) {
console.log(err, out);
});
fs.unlinkSync('./Vagrantfile');
});
});
});
});
});
});
});
}
// adv config:
// var config = {
// config: {
// vm: {
// box: 'ubuntu/trusty64'
// }
// }
// };
// machine.init('ubuntu/trusty64', config, onInit);
machine.init('ubuntu/trusty64', onInit);