We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 297fa0a commit 86bf200Copy full SHA for 86bf200
metadata.rb
@@ -3,7 +3,7 @@
3
license "Apache 2.0"
4
description "Installs/Configures nodejs"
5
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
6
-version "1.1.4"
+version "1.1.5"
7
name "nodejs"
8
provides "nodejs"
9
@@ -14,7 +14,6 @@
14
recipe "nodejs::npm", "Installs npm from source - a package manager for node"
15
16
depends "build-essential"
17
-depends "pkgin"
18
19
%w{ smartos }.each do |os|
20
supports os
recipes/install_from_package.rb
@@ -20,6 +20,11 @@
# limitations under the License.
21
#
22
23
-pkgin_package "nodejs" do
24
- action :install
+# package "nodejs" do
+# action :install
25
+# end
26
+
27
+bash "install_nodejs_from_package" do
28
+ command "sudo pkgin install -y nodejs"
29
+ user "root"
30
end
0 commit comments