Created
December 15, 2011 21:41
-
-
Save dodizzle/1483038 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
| cookbook_file "/etc/ssl/certs/star_#{node.domain}.pem" do | |
| source "star_#{node.domain}.pem" | |
| owner "root" | |
| group "root" | |
| mode 0755 | |
| end | |
| cookbook_file "/etc/ssl/private/star_#{node.domain}.key" do | |
| source "star_#{node.domain}.key" | |
| owner "root" | |
| group "root" | |
| mode 0740 | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment