Skip to content

Commit

Permalink
[COOK-3223] Support omnios/SmartOS packages
Browse files Browse the repository at this point in the history
- OmniOS package is developer/versioning/git
- SmartOS package is scmgit

Signed-off-by: Seth Vargo <[email protected]>
  • Loading branch information
Joshua Timberman authored and sethvargo committed Oct 1, 2013
1 parent 0e02574 commit 7de9552
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion recipes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,12 @@
action :install
end
else
package "git"
package "git" do
package_name case node['platform']
when 'omnios'
'developer/versioning/git'
when 'smartos'
'scmgit'
end
end
end

0 comments on commit 7de9552

Please sign in to comment.