diff --git a/recipes/forego.rb b/recipes/forego.rb new file mode 100644 index 0000000..00d830c --- /dev/null +++ b/recipes/forego.rb @@ -0,0 +1,14 @@ +# Forego: a foreman alternative in Go +# https://github.com/bukowskis/homebrew-bukowskis/blob/master/forego.rb + +case node["platform_family"] + when 'mac_os_x' + include_recipe "homebrewalt::default" + homebrewalt_tap "bukowskis/bukowskis" + + package "forego" do + action [:install, :upgrade] + end + when 'debian' + Chef::Log.debug("This recipe is OSX only") +end