vagrant-alpine 0.3.0 → 0.4.0
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/.ruby-version +1 -1
- data/.travis.yml +2 -2
- data/Gemfile +1 -1
- data/README.md +1 -0
- data/lib/vagrant-alpine/cap/change_host_name.rb +1 -1
- data/lib/vagrant-alpine/cap/smb.rb +13 -0
- data/lib/vagrant-alpine/plugin.rb +5 -0
- data/lib/vagrant-alpine/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4770dc0e6fc9302bc3f3b0b182f8218348aa2535
|
|
4
|
+
data.tar.gz: f24fec1231b480a8b26843e45d1f2a3a892510bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 108831f205ebb3001d6f86f8578a704b0e7f16adce713e2f6f1c31e89e180fbd05b44a5d299ccc4a4a023649f3abf9a03974e6cbebc952023520d5b2b253abae
|
|
7
|
+
data.tar.gz: 0e22d09d773f0f83361c682568c969e017219c42b694b9bae87dd9585e05b43a061b92f3471ab7a9c3079fb2335a6c2cffb409c052feb1f6319cbcd3a997117b
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby-2.
|
|
1
|
+
ruby-2.5.1
|
data/.travis.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
before_install:
|
|
3
|
-
- gem uninstall bundler --all --executables
|
|
4
|
-
- gem install bundler --version '~> 1.7.0'
|
|
3
|
+
# - gem uninstall bundler --all --executables
|
|
4
|
+
# - gem install bundler --version '~> 1.7.0'
|
|
5
5
|
# - sudo apt-get update -qq
|
|
6
6
|
# - sudo apt-get install -qq -y bsdtar
|
|
7
7
|
# - rvm @global do gem uninstall bundler --all --executables
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -16,6 +16,7 @@ This is a [Vagrant](http://vagrantup.com/) plugin adding support for [Alpine Lin
|
|
|
16
16
|
|
|
17
17
|
## Changes
|
|
18
18
|
|
|
19
|
+
* v0.4.0 - updates for alpine 3.8+
|
|
19
20
|
* v0.3.0 - update to fix defunct alpine apk repository in maier/alpine-3.3* boxes so that nfs client will install correctly.
|
|
20
21
|
* v0.2.0 - add `apk update` and `apk add --upgrade` to nfs client install
|
|
21
22
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-alpine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- matt maier
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -99,6 +99,7 @@ files:
|
|
|
99
99
|
- lib/vagrant-alpine/cap/halt.rb
|
|
100
100
|
- lib/vagrant-alpine/cap/nfs_client.rb
|
|
101
101
|
- lib/vagrant-alpine/cap/rsync.rb
|
|
102
|
+
- lib/vagrant-alpine/cap/smb.rb
|
|
102
103
|
- lib/vagrant-alpine/guest.rb
|
|
103
104
|
- lib/vagrant-alpine/plugin.rb
|
|
104
105
|
- lib/vagrant-alpine/version.rb
|
|
@@ -133,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
133
134
|
version: '0'
|
|
134
135
|
requirements: []
|
|
135
136
|
rubyforge_project:
|
|
136
|
-
rubygems_version: 2.4.
|
|
137
|
+
rubygems_version: 2.4.6
|
|
137
138
|
signing_key:
|
|
138
139
|
specification_version: 4
|
|
139
140
|
summary: Enables Vagrant to manage Alpine Linux Guests.
|