vagrant-shell 0.2.21 → 0.2.22

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- NTBhMThjMGQ5YTE2OGUyYjg2Yzg0YmJmMzIyODk2ZmE1NjY2ZWE5YQ==
5
- data.tar.gz: !binary |-
6
- YTk5OTEwMWQzZjZlOTQzM2JmODZlNzZhMmViZjlkMTZhNTk4ODZmYw==
2
+ SHA1:
3
+ metadata.gz: 7d24a61b978dd734b553d6496d05bab1792e01ae
4
+ data.tar.gz: c146c9d77ef08c98050d50f67428642975ae551f
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- N2E4MTU0M2ZkODlkOTBhYWQ3YWE1OThhYTRhY2ViZGYyODkyYTVjNjJkYzlm
10
- NGQwYzBmNTBhNDMwMjAyN2IwNTUxYzA0MjYxYzE5ZWEwZmQ1Nzk5MmZjNmE5
11
- YjI5OGI4NmViZjhkZThhOWQxMTdkMTYyYmVhNTUzZDVjYWY1NTk=
12
- data.tar.gz: !binary |-
13
- NTVkNjBhNzgzMDJhZjk4OWYxZmFiMjgwN2QxZjhmYTI3NmQxNmU0NGJkMTll
14
- NjYwZjE3MTAyMTY4NmFmYWU4MDkyYjljODk1YmMzZjcxZTYwMzNjMzA2Yzdm
15
- MDQwNjliOTAyZjljNDg5NTEyY2RjZDk0NTM0Y2FiNTcyNDM0Zjk=
6
+ metadata.gz: cf7d02a427e157e97c5834655fdabcb2a69f927c5271012b11edd931f89d462e51c75e767cba316fe676c07b645d17517eed5ea1171bf46557e725a50aa9b745
7
+ data.tar.gz: 831d0ae0a60d80ad0f6337926aac032dea0d20dd7b53a87095e0fe7075af5fd3206e6f87bda402a46fdd90eae8b39fbc25d7cde8bbff7cd62383c0552d200c99
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.21
1
+ 0.2.22
@@ -8,11 +8,11 @@ cmd="$1"; shift
8
8
  case "$cmd" in
9
9
  run-instance)
10
10
  image="$1"; shift
11
- cmd_bootstrap="$(which shell-docker-$image 2>&- || true)"
11
+ cmd_bootstrap="$(which shell-dcker-$image 2>&- || true)"
12
12
  if [[ -x "$cmd_bootstrap" ]]; then
13
13
  $cmd_bootstrap
14
14
  fi
15
- docker run ${DOCKER_OPT:--privileged -n -d -w /root -h "$(basename "$(pwd)")" }"$image" "$@"
15
+ docker run ${DOCKER_OPT:---privileged -d -w /root -h "$(basename "$(pwd)")" }"$image" "$@"
16
16
  ;;
17
17
  terminate-instance)
18
18
  instance="$1"; shift
@@ -20,11 +20,11 @@ case "$cmd" in
20
20
  ;;
21
21
  ssh-info)
22
22
  instance="$1"; shift
23
- echo "$(docker inspect -format '{{.NetworkSettings.IPAddress}}' $instance)" 22
23
+ echo "$(docker inspect --format '{{.NetworkSettings.IPAddress}}' $instance)" 22
24
24
  ;;
25
25
  read-state)
26
26
  instance="$1"; shift
27
- case "$(docker inspect -format '{{.State.Running}}' $instance)" in
27
+ case "$(docker inspect --format '{{.State.Running}}' $instance)" in
28
28
  true)
29
29
  echo running
30
30
  ;;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-shell
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.21
4
+ version: 0.2.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Bombadil
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-03-07 00:00:00.000000000 Z
12
+ date: 2014-08-05 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Enables Vagrant to manage machines using shell scripts
15
15
  email:
@@ -19,6 +19,12 @@ executables: []
19
19
  extensions: []
20
20
  extra_rdoc_files: []
21
21
  files:
22
+ - CHANGELOG.md
23
+ - LICENSE
24
+ - README.md
25
+ - VERSION
26
+ - lib/vagrant-shell.rb
27
+ - lib/vagrant-shell/action.rb
22
28
  - lib/vagrant-shell/action/is_created.rb
23
29
  - lib/vagrant-shell/action/message_already_created.rb
24
30
  - lib/vagrant-shell/action/message_not_created.rb
@@ -27,7 +33,6 @@ files:
27
33
  - lib/vagrant-shell/action/run_instance.rb
28
34
  - lib/vagrant-shell/action/terminate_instance.rb
29
35
  - lib/vagrant-shell/action/timed_provision.rb
30
- - lib/vagrant-shell/action.rb
31
36
  - lib/vagrant-shell/config.rb
32
37
  - lib/vagrant-shell/errors.rb
33
38
  - lib/vagrant-shell/plugin.rb
@@ -35,15 +40,10 @@ files:
35
40
  - lib/vagrant-shell/ssh-agent.rb
36
41
  - lib/vagrant-shell/util/timer.rb
37
42
  - lib/vagrant-shell/version.rb
38
- - lib/vagrant-shell.rb
39
- - locales/en.yml
40
- - libexec/shell-docker
43
+ - libexec/shell-dcker
41
44
  - libexec/shell-ec2
42
45
  - libexec/shell-static
43
- - CHANGELOG.md
44
- - LICENSE
45
- - README.md
46
- - VERSION
46
+ - locales/en.yml
47
47
  homepage: http://destructuring.org/vagrant-shell
48
48
  licenses: []
49
49
  metadata: {}
@@ -53,17 +53,17 @@ require_paths:
53
53
  - lib
54
54
  required_ruby_version: !ruby/object:Gem::Requirement
55
55
  requirements:
56
- - - ! '>='
56
+ - - ">="
57
57
  - !ruby/object:Gem::Version
58
58
  version: '0'
59
59
  required_rubygems_version: !ruby/object:Gem::Requirement
60
60
  requirements:
61
- - - ! '>='
61
+ - - ">="
62
62
  - !ruby/object:Gem::Version
63
63
  version: 1.3.6
64
64
  requirements: []
65
65
  rubyforge_project: vagrant-shell
66
- rubygems_version: 2.1.11
66
+ rubygems_version: 2.2.2
67
67
  signing_key:
68
68
  specification_version: 4
69
69
  summary: Enables Vagrant to manage machines using shell scripts