vagrant-sakura 0.1.0 → 0.2.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +2 -0
- data/lib/vagrant-sakura/os_type.rb +6 -0
- data/lib/vagrant-sakura/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5d2e7d9a658717576fbeea2ae64172521419c3b66e5e0235c6f175d76406376
|
4
|
+
data.tar.gz: fa60c01b3fec7e7287954b1f8bddeeadd6ae3c2150292d9dae879f34de929028
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c54c6ad3a43e1b77fd5dbcaf3af8070c33a2aa01ee5bddd1fd0ae475b72bf654543848500740d201c15d69e5b411895e32c07b1cf3d044e15f884935e8247ad4
|
7
|
+
data.tar.gz: aa62290db7c612547abbad5f7e0d25bc7316f5bce6dc80edd65d00c1768dedfce1df480c6e5af1581d442d7ec768849ac0ae11bcf21e6d9ba01b3d5f1615e021
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.2.1 (2018/09/27)
|
4
|
+
|
5
|
+
- Re-released due to maintainer's error. This release as the same commit as v0.2.0.
|
6
|
+
|
7
|
+
## 0.2.0 (2018/09/27)
|
8
|
+
|
9
|
+
- Add new os_type options: ubuntu-16.04, ubuntu-18.04 (#38)
|
10
|
+
|
3
11
|
## 0.1.0 (2018/09/10)
|
4
12
|
|
5
13
|
- Use usacloud config (#28)
|
data/README.md
CHANGED
@@ -184,6 +184,8 @@ $ vagrant sakura-list-id
|
|
184
184
|
|指定可能な値|SSHユーザー名|Vagrantfileの例|備考|
|
185
185
|
|---|---|:---:|---|
|
186
186
|
|`ubuntu`(デフォルト)|`ubuntu`| [example](examples/ubuntu.md) | - |
|
187
|
+
|`ubuntu-18.04`|`ubuntu`| - | - |
|
188
|
+
|`ubuntu-16.04`|`ubuntu`| - | - |
|
187
189
|
|`centos`|`root`| [example](examples/centos.md) | - |
|
188
190
|
|`centos6`|`root`| [example](examples/centos6.md) | - |
|
189
191
|
|`debian`|`root`| [example](examples/debian.md) | - |
|
@@ -11,6 +11,12 @@ module VagrantPlugins
|
|
11
11
|
"ubuntu" => {
|
12
12
|
"Tags.Name" => [%w(current-stable distro-ubuntu)]
|
13
13
|
},
|
14
|
+
"ubuntu-16.04" => {
|
15
|
+
"Tags.Name" => [%w(distro-ubuntu distro-ver-16.04.4)]
|
16
|
+
},
|
17
|
+
"ubuntu-18.04" => {
|
18
|
+
"Tags.Name" => [%w(distro-ubuntu distro-ver-18.04)]
|
19
|
+
},
|
14
20
|
"debian" => {
|
15
21
|
"Tags.Name" => [%w(current-stable distro-debian)]
|
16
22
|
},
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-sakura
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomoyuki Sahara
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-09-
|
12
|
+
date: 2018-09-27 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Enables Vagrant to manage machines in Sakura Cloud.
|
15
15
|
email:
|