issues
search
jupyterhub
/
batchspawner
Custom Spawner for Jupyterhub to start servers in batch scheduled systems
BSD 3-Clause "New" or "Revised" License
190
stars
134
forks
source link
batchspawner/batchspawner: Don't use `-o pipefail` in /bin/sh scripts
#189
Closed
rkdarst
closed
4 years ago
rkdarst
commented
4 years ago
-o pipefail
is a bashism, so that the spawner scripts that use
/bin/sh
can't possibly work if it's not linked to bash. As a immediate workaround, remove the option on the non-bash scripts. A long-term plan will come later.
Closes: #184, Discussion: #184
Fixes up: #177
Follow-up in: #188
-o pipefail
is a bashism, so that the spawner scripts that use/bin/sh
can't possibly work if it's not linked to bash. As a immediate workaround, remove the option on the non-bash scripts. A long-term plan will come later.