Created
February 14, 2015 15:49
-
-
Save toritori0318/818f24349aa3f6101f46 to your computer and use it in GitHub Desktop.
こんな風に書きたい
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define :install_and_enable_package, version: nil do | |
# install | |
action :install, :default do | |
package params[:name] do | |
version params[:version] if params[:version] | |
action :install | |
end | |
service params[:name] do | |
action :enable | |
end | |
end | |
# disable | |
action :disable do | |
service params[:name] do | |
action :disable | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment