Last active
August 27, 2018 09:02
-
-
Save sezemiadmin/d0e8702b38aa8b6db4626d4e8784bd5e to your computer and use it in GitHub Desktop.
chef の recipe サンプル
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
# | |
# Cookbook | |
# Recipie:: default | |
# | |
# Copyright:: 2018, The Authors, All Rights Reserved. | |
package "httpd" do | |
action :install | |
end | |
service "httpd" do | |
action [:enable, :start] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment