0
Ich benutze Capistrano, um Erlaubnis meines deploy_to
Weges zu überprüfen, es ist immer Ausgang path is not writable on mydomain.com
, obwohl ich ihm 777 Rechte gebe. HierCapistrano check Erlaubnis immer nicht beschreibbar
ls -ld /srv/www/
drwxrwxrwx 2 root root 4096 Jul 20 15:24 /srv/www/
ist die Aufgabe:
desc "Check that we can access everything"
task :check_write_permissions do
on roles(:all) do |host|
if test("[ -w #{fetch(:deploy_to)} ]")
info "#{fetch(:deploy_to)} is writable on #{host}"
else
error "#{fetch(:deploy_to)} is not writable on #{host}"
end
end
end
Ist es buchstäblich 'Pfad' in' Pfad ist nicht beschreibbar? Wenn ja, haben Sie 'deploy_to' falsch gesetzt. –
Ja @PhilipHallstrom Mein schlechtes! deploy_to ich sowohl in 'staging.rb' und' deploy.rb' –