Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Permission denied error - jenkins (shell script)

I'm using a jenkinsfile to test one of our instances. For this I created a bash script. Problem is that jenkins doesn't have permissions to run the script. Any idea how to fix this?

Jenkinsfile:

 stage("Testing instances"){
    if (terragruntAction == 'apply' || terragruntAction == 'test'){
       echo "Testing"
       sh '../check_services.sh'
    }
 }

output:

../check_services.sh: Permission denied

I tried to do:

git update-index --chmod=+x check_services.sh 

on the git folder that gets checkouted by Jenkins but no luck.

Any help, thanks in advance!

like image 776
Mathieum Avatar asked Oct 16 '17 08:10

Mathieum


Video Answer


2 Answers

I got it working with adding this to the GIT repo: git update-index --chmod=+x check_services.sh

like image 181
Mathieum Avatar answered Sep 27 '22 16:09

Mathieum


My preference is to keep access permissions for individual files out of my git repo, favoring a method to handle this right inside the pipeline instead. Simply run the chmod ahead of the execution of the script, to give permissions to the workspace. Using declarative:

    stage('My Stage') {
        steps {
            sh "chmod +x -R ${env.WORKSPACE}"
            sh "./my-script.sh"
        }
    }

NOTE: For those who don't know this yet, the other requirement is to explicitly tell pipeline where the script is relative to the workspace. Just using sh "my-script.sh" won't work.

like image 27
tbradt Avatar answered Sep 27 '22 17:09

tbradt