From 17e07c2c3ead4a25ad81ed937a400cca0984246c Mon Sep 17 00:00:00 2001 From: jtimberman Date: Mon, 11 May 2009 20:50:05 -0600 Subject: [PATCH] cook-98 update for chef-257 and add site- for site cookbook rsync --- Rakefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Rakefile b/Rakefile index af131b3..af840e2 100644 --- a/Rakefile +++ b/Rakefile @@ -85,11 +85,11 @@ task :install => [ :update, :test ] do puts "* Installing new Cookbooks" sh "sudo rsync -rlP --delete --exclude '.svn' cookbooks/ #{COOKBOOK_PATH}" puts "* Installing new Site Cookbooks" - sh "sudo rsync -rlP --delete --exclude '.svn' cookbooks/ #{SITE_COOKBOOK_PATH}" - puts "* Installing new Chef Server Config" - sh "sudo cp config/server.rb #{CHEF_SERVER_CONFIG}" - puts "* Installing new Chef Client Config" - sh "sudo cp config/client.rb #{CHEF_CLIENT_CONFIG}" + sh "sudo rsync -rlP --delete --exclude '.svn' site-cookbooks/ #{SITE_COOKBOOK_PATH}" + # puts "* Installing new Chef Server Config" + # sh "sudo cp config/server.rb #{CHEF_SERVER_CONFIG}" + # puts "* Installing new Chef Client Config" + # sh "sudo cp config/client.rb #{CHEF_CLIENT_CONFIG}" end desc "By default, run rake test"