dust-deploy 0.10.3 → 0.10.4
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/changelog.md +5 -0
- data/lib/dust/recipes/cjdroute.rb +1 -3
- data/lib/dust/version.rb +1 -1
- metadata +2 -2
data/changelog.md
CHANGED
|
@@ -105,12 +105,10 @@ class Cjdroute< Recipe
|
|
|
105
105
|
return false unless @node.install_package 'build-essential', :indent => 2
|
|
106
106
|
return false unless @node.install_package 'psmisc', :indent => 2
|
|
107
107
|
return false unless @node.install_package 'coreutils', :indent => 2
|
|
108
|
-
|
|
108
|
+
else
|
|
109
109
|
return false unless @node.install_package 'git', :indent => 2
|
|
110
110
|
return false unless @node.install_package 'gcc', :indent => 2
|
|
111
111
|
return false unless @node.install_package 'make', :indent => 2
|
|
112
|
-
else
|
|
113
|
-
return ::Dust.print_failed 'sorry, your os is not supported by this script'
|
|
114
112
|
end
|
|
115
113
|
|
|
116
114
|
puts
|
data/lib/dust/version.rb
CHANGED