lambom 0.4.2 → 0.4.3
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/lambom/converger.rb +3 -9
- data/lib/lambom/version.rb +1 -1
- metadata +1 -1
data/lib/lambom/converger.rb
CHANGED
@@ -107,13 +107,6 @@ EOF
|
|
107
107
|
end
|
108
108
|
|
109
109
|
|
110
|
-
# def berks_install
|
111
|
-
# Berkshelf::Cli.new.invoke('berkshelf:install',
|
112
|
-
# ['-b',@berksfile,'-p',"#{DEFAULT_CHEF_PATH}/cookbooks"],
|
113
|
-
# :config => '/tmp/test')
|
114
|
-
# end
|
115
|
-
|
116
|
-
|
117
110
|
def ejecutar_converger
|
118
111
|
|
119
112
|
cmd = %W{
|
@@ -135,8 +128,9 @@ EOF
|
|
135
128
|
end
|
136
129
|
|
137
130
|
def preparar_entorno
|
138
|
-
|
139
|
-
|
131
|
+
# dont drop ruby vars from env
|
132
|
+
#ENV_VARS_DELETE.each {|v| ENV.delete(v)}
|
133
|
+
#ENV["PATH"] = '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
|
140
134
|
|
141
135
|
#creamos directorio de logs
|
142
136
|
FileUtils.mkdir_p(conf.logdir) unless File.directory?(conf.logdir)
|
data/lib/lambom/version.rb
CHANGED