Created
February 16, 2009 22:25
-
-
Save jsierles/65413 to your computer and use it in GitHub Desktop.
This file contains 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
attributes.rb | |
------------- | |
apt = Mash.new | |
apt[:mirror] = Mash.new | |
apt[:mirror][:base_path] = "/u/mirrors/apt" | |
recipes/mirror.rb | |
----------------- | |
require_recipe "apt" | |
directory node[:apt][:mirror][:base_path] do | |
action :create | |
owner "root" | |
group "root" | |
mode 0755 | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment