dev-lxc 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.
- data/lib/dev-lxc.rb +6 -1
- data/lib/dev-lxc/version.rb +1 -1
- metadata +2 -2
data/lib/dev-lxc.rb
CHANGED
|
@@ -36,7 +36,12 @@ module DevLXC
|
|
|
36
36
|
when "b-ubuntu-1204"
|
|
37
37
|
base_platform.run_command("apt-get update")
|
|
38
38
|
base_platform.run_command("apt-get install -y standard^ server^ vim-nox emacs23-nox tree")
|
|
39
|
-
when "b-centos-5"
|
|
39
|
+
when "b-centos-5"
|
|
40
|
+
# downgrade openssl temporarily to overcome an install bug
|
|
41
|
+
# reference: http://www.hack.net.br/blog/2014/02/12/openssl-conflicts-with-file-from-package-openssl/
|
|
42
|
+
base_platform.run_command("yum downgrade -y openssl")
|
|
43
|
+
base_platform.run_command("yum install -y @base @core vim-enhanced emacs-nox tree")
|
|
44
|
+
when "b-centos-6"
|
|
40
45
|
base_platform.run_command("yum install -y @base @core vim-enhanced emacs-nox tree")
|
|
41
46
|
end
|
|
42
47
|
base_platform.stop
|
data/lib/dev-lxc/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dev-lxc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-03-
|
|
12
|
+
date: 2014-03-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|