Skip to content

Instantly share code, notes, and snippets.

@jsierles
Created February 16, 2009 22:25
Show Gist options
  • Save jsierles/65413 to your computer and use it in GitHub Desktop.
Save jsierles/65413 to your computer and use it in GitHub Desktop.
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