1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Fixed that cap setup would use 755 on the deploy_to and shared directory roots instead of 775 [DHH]

git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@5355 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2006-10-24 16:37:21 +00:00
parent 9250fe00b9
commit 077675242b
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Fixed that cap setup would use 755 on the deploy_to and shared directory roots instead of 775 [DHH]
* Don't run the cleanup task on servers marked no_release [Jamis Buck]
* Fix typo in default_io_proc so it correctly checks the stream parameter to see if it is the error stream [Stephen Haberman]

View file

@ -37,7 +37,7 @@ end
desc "Set up the expected application directory structure on all boxes"
task :setup, :except => { :no_release => true } do
run <<-CMD
mkdir -p -m 775 #{releases_path} #{shared_path}/system &&
mkdir -p -m 775 #{deploy_to} #{releases_path} #{shared_path} #{shared_path}/system &&
mkdir -p -m 777 #{shared_path}/log &&
mkdir -p -m 777 #{shared_path}/pids
CMD