Task deploy:update_code permission denied #2448
liberatintt
started this conversation in
General
Replies: 1 comment 3 replies
-
Looks like problem on your side. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
host config:
host('....')
->stage('production')
->user('ssh_user')
->become('doc_root_allowed_user')
->set('branch', 'newversion')
->set('deploy_path', '/var/www/html/default');
Deploy task definition:
task('deploy', [
'deploy:info',
'deploy:prepare',
'deploy:lock',
'deploy:release',
'deploy:update_code',
'deploy:shared',
'deploy:writable',
'deploy:vendors',
'deploy:clear_paths',
'deploy:symlink',
'deploy:unlock',
'cleanup',
'success'
]);
At the deploy:update_code task i always get a permission denied (it look like the become setting is not handled by this task)
PS: I am sorry for my poor english
Beta Was this translation helpful? Give feedback.
All reactions