itamae-plugin-recipe-docker 0.2.1 → 0.2.2
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83c0f25b957f1a1c3438d0841e089b502a63d756
|
|
4
|
+
data.tar.gz: 938e671d950070286868aeb11427c63b3ac26293
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d65625a810e132376a7d7419a1445365e635ef94db5120822f22fce80ffc3cab20e3c75872da15bed65ec86943cfd04f5c1c20d677b92359dcdfa143b3874a47
|
|
7
|
+
data.tar.gz: 95afd3ec92ed4b18cb73ad67d1eaf01865be59e0d17cdd9b13c57e2fbb6fb2558a26260b01afe3d41b13c22e1329ad5814bda7b2af2a1efbfba6c580c49eb304
|
|
@@ -29,12 +29,15 @@ when 'darwin'
|
|
|
29
29
|
cask 'dockertoolbox'
|
|
30
30
|
|
|
31
31
|
when 'debian'
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
case node[:platform_version].to_i
|
|
33
|
+
when 7 # Wheezy (7.x)
|
|
34
|
+
execute 'echo "deb http://http.debian.net/debian wheezy-backports main" >> /etc/apt/sources.list' do
|
|
35
|
+
not_if 'cat /etc/apt/sources.list | grep wheezy-backports'
|
|
36
|
+
end
|
|
35
37
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
+
execute 'apt-get install linux-image-amd64 -t wheezy-backports && reboot' do
|
|
39
|
+
not_if 'dpkg -l | grep -q linux-image-amd64'
|
|
40
|
+
end
|
|
38
41
|
end
|
|
39
42
|
|
|
40
43
|
execute 'curl -sSL https://get.docker.com/ | sh' do
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: itamae-plugin-recipe-docker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takashi Kokubun
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-05-
|
|
11
|
+
date: 2016-05-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: itamae
|
|
@@ -109,3 +109,4 @@ signing_key:
|
|
|
109
109
|
specification_version: 4
|
|
110
110
|
summary: Itamae recipe plugin to install Docker.
|
|
111
111
|
test_files: []
|
|
112
|
+
has_rdoc:
|