vagrant-parallels 1.3.10 → 1.3.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/lib/vagrant-parallels/driver/base.rb +23 -2
  3. data/lib/vagrant-parallels/driver/meta.rb +4 -11
  4. data/lib/vagrant-parallels/driver/pd_8.rb +8 -8
  5. data/lib/vagrant-parallels/version.rb +1 -1
  6. data/test/unit/support/shared/parallels_context.rb +5 -0
  7. data/website/docs/build/404.html +134 -0
  8. data/website/docs/build/docs/boxes/base.html +207 -0
  9. data/website/docs/build/docs/boxes/index.html +161 -0
  10. data/website/docs/build/docs/boxes/packer.html +181 -0
  11. data/website/docs/build/docs/boxes/veewee.html +225 -0
  12. data/website/docs/build/docs/configuration.html +231 -0
  13. data/website/docs/build/docs/contacts.html +134 -0
  14. data/website/docs/build/docs/getting-started.html +164 -0
  15. data/website/docs/build/docs/index.html +157 -0
  16. data/website/docs/build/docs/installation/index.html +152 -0
  17. data/website/docs/build/docs/installation/uninstallation.html +141 -0
  18. data/website/docs/build/docs/installation/updating.html +139 -0
  19. data/website/docs/build/docs/networking/forwarded_ports.html +196 -0
  20. data/website/docs/build/docs/networking/index.html +155 -0
  21. data/website/docs/build/docs/networking/private_network.html +177 -0
  22. data/website/docs/build/docs/networking/public_network.html +173 -0
  23. data/website/docs/build/docs/share.html +151 -0
  24. data/website/docs/build/docs/usage.html +146 -0
  25. data/website/docs/build/images/current_pointer-539d41b3.png +0 -0
  26. data/website/docs/build/images/footer_pd_logo-6ec6c3c6.png +0 -0
  27. data/website/docs/build/images/footer_vagrant_logo-8c7e7b39.png +0 -0
  28. data/website/docs/build/images/logo_docs-7e96bb5e.png +0 -0
  29. data/website/docs/build/images/logo_docs_small-c0512386.png +0 -0
  30. data/website/docs/build/images/nav_divider-0c73f644.png +0 -0
  31. data/website/docs/build/images/open_close-8d5572c4.png +0 -0
  32. data/website/docs/build/index.html +157 -0
  33. data/website/docs/build/javascripts/backstretch-f9c163c1.js +4 -0
  34. data/website/docs/build/javascripts/bootstrap.min-98cc7a22.js +7 -0
  35. data/website/docs/build/javascripts/fittext-b487af57.js +10 -0
  36. data/website/docs/build/javascripts/grid-overlay-19e89cad.js +19 -0
  37. data/website/docs/build/javascripts/jquery-15b079d7.js +3 -0
  38. data/website/docs/build/javascripts/less-1.3.0.min-0bbbfaf9.js +3 -0
  39. data/website/docs/build/javascripts/modernizr-d56a170f.js +8 -0
  40. data/website/docs/build/javascripts/vagrant-parallels-966ff22c.js +1 -0
  41. data/website/docs/build/stylesheets/bootstrap-8082a218.css +9 -0
  42. data/website/docs/build/stylesheets/vagrant-parallels-a389b6ea.css +1 -0
  43. metadata +38 -2
@@ -0,0 +1,177 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+
6
+ <title> Private Networks - Networking - Vagrant Parallels Provider Documentation</title>
7
+
8
+ <!-- meta -->
9
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
10
+
11
+ <!-- lib styles -->
12
+ <link href="../../stylesheets/bootstrap-8082a218.css" media="screen" rel="stylesheet" type="text/css" />
13
+ <link href="../../stylesheets/vagrant-parallels-a389b6ea.css" media="screen" rel="stylesheet" type="text/css" />
14
+
15
+ <!-- lib js -->
16
+ <script src="../../javascripts/jquery-15b079d7.js" type="text/javascript"></script>
17
+ <script src="../../javascripts/modernizr-d56a170f.js" type="text/javascript"></script>
18
+ <script src="../../javascripts/bootstrap.min-98cc7a22.js" type="text/javascript"></script>
19
+ <script src="../../javascripts/backstretch-f9c163c1.js" type="text/javascript"></script>
20
+ <script src="../../javascripts/vagrant-parallels-966ff22c.js" type="text/javascript"></script>
21
+
22
+ <!-- fonts -->
23
+ <link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
24
+
25
+ </head>
26
+ <body>
27
+ <!-- wrap everything -->
28
+ <div class="wrapper">
29
+
30
+ <!-- nav -->
31
+
32
+ <nav class="docs">
33
+ <div class="container">
34
+ <!-- vagrant logo -->
35
+ <a class="vagrant-docs-logo" href="../">Vagrant Parallels Documentation</a>
36
+ <!-- nav -->
37
+ <ul class="pull-right">
38
+ <li><a href="https://docs.vagrantup.com">Vagrant Docs</a></li>
39
+ <li><a href="https://github.com/Parallels/vagrant-parallels">Github</a></li>
40
+ </ul>
41
+ </div> <!-- container -->
42
+ </nav>
43
+
44
+ <div class="page docs docs-home">
45
+ <div class="container">
46
+ <div class="sidebar span4">
47
+ <!-- get the sidebar nav -->
48
+ <!-- side nav docs -->
49
+ <aside class="sidebar-nav">
50
+
51
+ <div class="toggle hidden-desktop">
52
+ <div class="open-close open"></div>
53
+ <a href="#">Contents</a>
54
+ </div>
55
+
56
+ <ul class="unstyled">
57
+ <li><a href="../">Overview</a></li>
58
+
59
+ <li><a href="../installation/">Installation</a></li>
60
+
61
+
62
+ <li><a href="../usage.html">Usage</a></li>
63
+
64
+ <li><a href="../getting-started.html">Getting Started</a></li>
65
+
66
+ <li><a href="../share.html">Vagrant Share</a></li>
67
+
68
+ <li><a href="../boxes/">Boxes</a></li>
69
+
70
+
71
+ <li><a href="../configuration.html">Configuration</a></li>
72
+
73
+ <li><a href="./">Networking</a></li>
74
+
75
+ <ul class="sub unstyled">
76
+ <li class="current"><a href="private_network.html">Private Network</a></li>
77
+ <li><a href="public_network.html">Public Network</a></li>
78
+ <li><a href="forwarded_ports.html">Forwarded Ports</a></li>
79
+ </ul>
80
+
81
+
82
+ <li><a href="../contacts.html">Contacts</a></li>
83
+
84
+ </ul>
85
+ </aside> <!-- /.sidebar -->
86
+ </div> <!-- /.sidebar -->
87
+
88
+ <div class="page-contents span9">
89
+ <div class="page-background"></div>
90
+
91
+ <!-- start page content -->
92
+ <div class="row">
93
+ <div class="span8 offset1">
94
+ <h1>Private Networks</h1>
95
+
96
+ <p><strong>General Vagrant doc page</strong>: <a href="http://docs.vagrantup.com/v2/networking/private_network.html">Private Networks</a>.</p>
97
+
98
+ <p>Private networking by the Parallels provider is fully compatible with the basic
99
+ Vagrant approach.</p>
100
+
101
+ <p>In order to implement a private network, the Parallels provider configures the
102
+ internal <a href="http://download.parallels.com/desktop/v9/ga/docs/en_US/Parallels%20Desktop%20User&amp;#x27;s%20Guide/33018.htm">Host-Only</a>
103
+ network.</p>
104
+
105
+ <h2>DHCP</h2>
106
+
107
+ <p>The easiest way to use a private network is to allow the IP address to be assigned
108
+ via DHCP.</p>
109
+
110
+ <pre><code class="ruby">Vagrant.configure(&quot;2&quot;) do |config|
111
+ config.vm.network &quot;private_network&quot;, type: &quot;dhcp&quot;
112
+ end
113
+ </code></pre>
114
+
115
+ <p>This will automatically assign an IP address from the reserved address space.
116
+ The IP address can be determined by using <code>vagrant ssh</code> to SSH into the virtual
117
+ machine and using the appropriate command-line tool to find the IP, such as
118
+ <code>ifconfig</code>.</p>
119
+
120
+ <h2>Static IP</h2>
121
+
122
+ <p>You can also specify a static IP address for the machine. This lets you access
123
+ the Vagrant managed machine using a static (known) IP address. The Vagrantfile
124
+ for a static IP address should look like this:</p>
125
+
126
+ <pre><code class="ruby">Vagrant.configure(&quot;2&quot;) do |config|
127
+ config.vm.network &quot;private_network&quot;, ip: &quot;192.168.50.4&quot;
128
+ end
129
+ </code></pre>
130
+
131
+ <p>It is a responsibility of the user to ensure that the static IP address does not
132
+ conflict with any other machines on the same network.</p>
133
+
134
+ <p>While you can choose any IP address, you <em>should</em> use an IP from the
135
+ <a href="http://en.wikipedia.org/wiki/Private_network#Private_IPv4_address_spaces">reserved private address space</a>.
136
+ These addresses are guaranteed to never be publicly routable, and most routers
137
+ actually block traffic from going to them from the outside world.</p>
138
+
139
+ </div> <!-- /.span8 -->
140
+ </div> <!-- /.row -->
141
+ </div> <!-- /.page-contents -->
142
+ </div> <!-- /.container -->
143
+ </div> <!-- /.page -->
144
+
145
+ <!-- footer -->
146
+ <footer>
147
+ <div class="container">
148
+ <div class="row">
149
+ <ul class="unstyled logos">
150
+ <a href="http://www.vagrantup.com/downloads.html">
151
+ <li class="vagrant-logo-monochrome">
152
+ <p>Vagrant</p>
153
+ </li>
154
+ </a>
155
+ <a href="http://www.parallels.com/downloads/desktop/">
156
+ <li class="pd-logo-monochrome">
157
+ <p>Parallels Desktop</p>
158
+ </li>
159
+ </a>
160
+ </ul> <!-- /span -->
161
+
162
+ </div> <!-- /row -->
163
+
164
+ <div class="row">
165
+ <h6 class="legal">
166
+ &copy; 2015 Parallels IP Holdings GmbH.
167
+ </h6>
168
+ </div> <!-- row -->
169
+ </div> <!-- container -->
170
+ </footer>
171
+
172
+ <!-- close .wrapper -->
173
+ </div>
174
+
175
+ <!-- load scripts -->
176
+ </body>
177
+ </html>
@@ -0,0 +1,173 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+
6
+ <title> Public Networks - Networking - Vagrant Parallels Provider Documentation</title>
7
+
8
+ <!-- meta -->
9
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
10
+
11
+ <!-- lib styles -->
12
+ <link href="../../stylesheets/bootstrap-8082a218.css" media="screen" rel="stylesheet" type="text/css" />
13
+ <link href="../../stylesheets/vagrant-parallels-a389b6ea.css" media="screen" rel="stylesheet" type="text/css" />
14
+
15
+ <!-- lib js -->
16
+ <script src="../../javascripts/jquery-15b079d7.js" type="text/javascript"></script>
17
+ <script src="../../javascripts/modernizr-d56a170f.js" type="text/javascript"></script>
18
+ <script src="../../javascripts/bootstrap.min-98cc7a22.js" type="text/javascript"></script>
19
+ <script src="../../javascripts/backstretch-f9c163c1.js" type="text/javascript"></script>
20
+ <script src="../../javascripts/vagrant-parallels-966ff22c.js" type="text/javascript"></script>
21
+
22
+ <!-- fonts -->
23
+ <link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
24
+
25
+ </head>
26
+ <body>
27
+ <!-- wrap everything -->
28
+ <div class="wrapper">
29
+
30
+ <!-- nav -->
31
+
32
+ <nav class="docs">
33
+ <div class="container">
34
+ <!-- vagrant logo -->
35
+ <a class="vagrant-docs-logo" href="../">Vagrant Parallels Documentation</a>
36
+ <!-- nav -->
37
+ <ul class="pull-right">
38
+ <li><a href="https://docs.vagrantup.com">Vagrant Docs</a></li>
39
+ <li><a href="https://github.com/Parallels/vagrant-parallels">Github</a></li>
40
+ </ul>
41
+ </div> <!-- container -->
42
+ </nav>
43
+
44
+ <div class="page docs docs-home">
45
+ <div class="container">
46
+ <div class="sidebar span4">
47
+ <!-- get the sidebar nav -->
48
+ <!-- side nav docs -->
49
+ <aside class="sidebar-nav">
50
+
51
+ <div class="toggle hidden-desktop">
52
+ <div class="open-close open"></div>
53
+ <a href="#">Contents</a>
54
+ </div>
55
+
56
+ <ul class="unstyled">
57
+ <li><a href="../">Overview</a></li>
58
+
59
+ <li><a href="../installation/">Installation</a></li>
60
+
61
+
62
+ <li><a href="../usage.html">Usage</a></li>
63
+
64
+ <li><a href="../getting-started.html">Getting Started</a></li>
65
+
66
+ <li><a href="../share.html">Vagrant Share</a></li>
67
+
68
+ <li><a href="../boxes/">Boxes</a></li>
69
+
70
+
71
+ <li><a href="../configuration.html">Configuration</a></li>
72
+
73
+ <li><a href="./">Networking</a></li>
74
+
75
+ <ul class="sub unstyled">
76
+ <li><a href="private_network.html">Private Network</a></li>
77
+ <li class="current"><a href="public_network.html">Public Network</a></li>
78
+ <li><a href="forwarded_ports.html">Forwarded Ports</a></li>
79
+ </ul>
80
+
81
+
82
+ <li><a href="../contacts.html">Contacts</a></li>
83
+
84
+ </ul>
85
+ </aside> <!-- /.sidebar -->
86
+ </div> <!-- /.sidebar -->
87
+
88
+ <div class="page-contents span9">
89
+ <div class="page-background"></div>
90
+
91
+ <!-- start page content -->
92
+ <div class="row">
93
+ <div class="span8 offset1">
94
+ <h1>Public Networks</h1>
95
+
96
+ <p><strong>General Vagrant doc page</strong>: <a href="http://docs.vagrantup.com/v2/networking/public_network.html">Public Networks</a>.</p>
97
+
98
+ <p>Public networking by the Parallels provider is fully compatible with the basic
99
+ Vagrant approach.</p>
100
+
101
+ <p>In order to implement a public network, the Parallels provider configures a
102
+ <a href="http://download.parallels.com/desktop/v9/ga/docs/en_US/Parallels%20Desktop%20User&amp;#x27;s%20Guide/33015.htm">Bridged</a>
103
+ network.</p>
104
+
105
+ <h2>DHCP</h2>
106
+
107
+ <p>The easiest way to use a public network is to allow the IP address to be
108
+ assigned via DHCP. Use the following syntax to define a public network:</p>
109
+
110
+ <pre><code class="ruby">Vagrant.configure(&quot;2&quot;) do |config|
111
+ config.vm.network &quot;public_network&quot;
112
+ end
113
+ </code></pre>
114
+
115
+ <p>When DHCP is used, the IP address can be determined by using <code>vagrant ssh</code> to
116
+ SSH into the machine and using the appropriate command-line tool to find the
117
+ address, such as <code>ifconfig</code>.</p>
118
+
119
+ <h2>Default Network Interface</h2>
120
+
121
+ <p>If more than one network interface is available in the host machine, Vagrant
122
+ will ask you to choose which interface the virtual machine should bridge to. A
123
+ default interface can be specified by adding a <code>bridge</code> clause to the network
124
+ definition.</p>
125
+
126
+ <pre><code class="ruby">Vagrant.configure(&quot;2&quot;) do |config|
127
+ config.vm.network &quot;public_network&quot;, bridge: &#39;en1&#39;
128
+ end
129
+ </code></pre>
130
+
131
+ <p>The string identifying the desired interface must exactly match the name of an
132
+ available interface. If it can&#39;t be found, Vagrant will ask you to pick
133
+ from a list of available network interfaces.</p>
134
+
135
+ </div> <!-- /.span8 -->
136
+ </div> <!-- /.row -->
137
+ </div> <!-- /.page-contents -->
138
+ </div> <!-- /.container -->
139
+ </div> <!-- /.page -->
140
+
141
+ <!-- footer -->
142
+ <footer>
143
+ <div class="container">
144
+ <div class="row">
145
+ <ul class="unstyled logos">
146
+ <a href="http://www.vagrantup.com/downloads.html">
147
+ <li class="vagrant-logo-monochrome">
148
+ <p>Vagrant</p>
149
+ </li>
150
+ </a>
151
+ <a href="http://www.parallels.com/downloads/desktop/">
152
+ <li class="pd-logo-monochrome">
153
+ <p>Parallels Desktop</p>
154
+ </li>
155
+ </a>
156
+ </ul> <!-- /span -->
157
+
158
+ </div> <!-- /row -->
159
+
160
+ <div class="row">
161
+ <h6 class="legal">
162
+ &copy; 2015 Parallels IP Holdings GmbH.
163
+ </h6>
164
+ </div> <!-- row -->
165
+ </div> <!-- container -->
166
+ </footer>
167
+
168
+ <!-- close .wrapper -->
169
+ </div>
170
+
171
+ <!-- load scripts -->
172
+ </body>
173
+ </html>
@@ -0,0 +1,151 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+
6
+ <title> Vagrant Share - Vagrant Parallels Provider Documentation</title>
7
+
8
+ <!-- meta -->
9
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
10
+
11
+ <!-- lib styles -->
12
+ <link href="../stylesheets/bootstrap-8082a218.css" media="screen" rel="stylesheet" type="text/css" />
13
+ <link href="../stylesheets/vagrant-parallels-a389b6ea.css" media="screen" rel="stylesheet" type="text/css" />
14
+
15
+ <!-- lib js -->
16
+ <script src="../javascripts/jquery-15b079d7.js" type="text/javascript"></script>
17
+ <script src="../javascripts/modernizr-d56a170f.js" type="text/javascript"></script>
18
+ <script src="../javascripts/bootstrap.min-98cc7a22.js" type="text/javascript"></script>
19
+ <script src="../javascripts/backstretch-f9c163c1.js" type="text/javascript"></script>
20
+ <script src="../javascripts/vagrant-parallels-966ff22c.js" type="text/javascript"></script>
21
+
22
+ <!-- fonts -->
23
+ <link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
24
+
25
+ </head>
26
+ <body>
27
+ <!-- wrap everything -->
28
+ <div class="wrapper">
29
+
30
+ <!-- nav -->
31
+
32
+ <nav class="docs">
33
+ <div class="container">
34
+ <!-- vagrant logo -->
35
+ <a class="vagrant-docs-logo" href="./">Vagrant Parallels Documentation</a>
36
+ <!-- nav -->
37
+ <ul class="pull-right">
38
+ <li><a href="https://docs.vagrantup.com">Vagrant Docs</a></li>
39
+ <li><a href="https://github.com/Parallels/vagrant-parallels">Github</a></li>
40
+ </ul>
41
+ </div> <!-- container -->
42
+ </nav>
43
+
44
+ <div class="page docs docs-home">
45
+ <div class="container">
46
+ <div class="sidebar span4">
47
+ <!-- get the sidebar nav -->
48
+ <!-- side nav docs -->
49
+ <aside class="sidebar-nav">
50
+
51
+ <div class="toggle hidden-desktop">
52
+ <div class="open-close open"></div>
53
+ <a href="#">Contents</a>
54
+ </div>
55
+
56
+ <ul class="unstyled">
57
+ <li><a href="./">Overview</a></li>
58
+
59
+ <li><a href="installation/">Installation</a></li>
60
+
61
+
62
+ <li><a href="usage.html">Usage</a></li>
63
+
64
+ <li><a href="getting-started.html">Getting Started</a></li>
65
+
66
+ <li class="current"><a href="share.html">Vagrant Share</a></li>
67
+
68
+ <li><a href="boxes/">Boxes</a></li>
69
+
70
+
71
+ <li><a href="configuration.html">Configuration</a></li>
72
+
73
+ <li><a href="networking/">Networking</a></li>
74
+
75
+
76
+ <li><a href="contacts.html">Contacts</a></li>
77
+
78
+ </ul>
79
+ </aside> <!-- /.sidebar -->
80
+ </div> <!-- /.sidebar -->
81
+
82
+ <div class="page-contents span9">
83
+ <div class="page-background"></div>
84
+
85
+ <!-- start page content -->
86
+ <div class="row">
87
+ <div class="span8 offset1">
88
+ <h1>Vagrant Share</h1>
89
+
90
+ <p><strong>General Vagrant doc page:</strong> <a href="http://docs.vagrantup.com/v2/share/index.html">Vagrant Share</a>.</p>
91
+
92
+ <p>Vagrant Share allows you to share your Vagrant environment with anyone in the
93
+ world, enabling collaboration directly in your Vagrant environment in almost any
94
+ network environment with just a single command: <code>vagrant share</code>.</p>
95
+
96
+ <p>The Parallels provider supports two primary modes or features of Vagrant Share:</p>
97
+
98
+ <ul>
99
+ <li><p><a href="http://docs.vagrantup.com/v2/share/http.html"><strong>HTTP sharing</strong></a> will create a
100
+ URL that you can give to anyone. This URL will route directly into your Vagrant
101
+ environment. The person using this URL does not need Vagrant installed, so it
102
+ can be shared with anyone. This is useful for testing webhooks or showing your
103
+ work to clients, teammates, managers, etc.</p></li>
104
+ <li><p><a href="http://docs.vagrantup.com/v2/share/ssh.html"><strong>SSH sharing</strong></a> will allow
105
+ instant SSH access to your Vagrant environment by anyone by running <code>vagrant
106
+ connect --ssh</code> on the remote side. This is useful for pair programming,
107
+ debugging ops problems, etc.</p></li>
108
+ </ul>
109
+
110
+ <p>Vagrant Share requires an account with <a href="https://vagrantcloud.com/">Vagrant Cloud</a>
111
+ to be used.</p>
112
+
113
+ </div> <!-- /.span8 -->
114
+ </div> <!-- /.row -->
115
+ </div> <!-- /.page-contents -->
116
+ </div> <!-- /.container -->
117
+ </div> <!-- /.page -->
118
+
119
+ <!-- footer -->
120
+ <footer>
121
+ <div class="container">
122
+ <div class="row">
123
+ <ul class="unstyled logos">
124
+ <a href="http://www.vagrantup.com/downloads.html">
125
+ <li class="vagrant-logo-monochrome">
126
+ <p>Vagrant</p>
127
+ </li>
128
+ </a>
129
+ <a href="http://www.parallels.com/downloads/desktop/">
130
+ <li class="pd-logo-monochrome">
131
+ <p>Parallels Desktop</p>
132
+ </li>
133
+ </a>
134
+ </ul> <!-- /span -->
135
+
136
+ </div> <!-- /row -->
137
+
138
+ <div class="row">
139
+ <h6 class="legal">
140
+ &copy; 2015 Parallels IP Holdings GmbH.
141
+ </h6>
142
+ </div> <!-- row -->
143
+ </div> <!-- container -->
144
+ </footer>
145
+
146
+ <!-- close .wrapper -->
147
+ </div>
148
+
149
+ <!-- load scripts -->
150
+ </body>
151
+ </html>