Skip to content

Commit

Permalink
Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias Ettinger committed Dec 17, 2021
1 parent 57b42fe commit 32befcd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('docker') {
node('hpc') {

stage('Delegate to build job') {
build job: '../opensand-ci', parameters: [string(name: 'BRANCH_NAME', value: env.BRANCH_NAME)], propagate: true, wait: true
Expand Down
1 change: 1 addition & 0 deletions opensand-deploy/src/backend/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,7 @@ def upload_entity(name, entity):
for file in files:
with file.open('rb') as source, destination.joinpath(file.name).open('wb') as dest:
dest.write(source.read())
destination.joinpath(file.name).chmod(0o0666)

if ssh_config is None:
return success()
Expand Down
2 changes: 1 addition & 1 deletion opensand-packaging/focal/opensand-deploy/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Section: misc
Package: opensand-deploy
Architecture: any
Section: misc
Depends: libopensand-conf (= ${binary:Version}), python3-flask, python3-flask-cors, uwsgi, uwsgi-plugin-python3
Depends: libopensand-conf (= ${binary:Version}), python3-flask, python3-flask-cors, uwsgi, uwsgi-plugin-python3, python3-paramiko, python3-scp
Provides:
Conflicts:
Replaces:
Expand Down

0 comments on commit 32befcd

Please sign in to comment.