Skip to content

Commit

Permalink
Remove redundant comment and default
Browse files Browse the repository at this point in the history
  • Loading branch information
rhpvorderman committed Aug 5, 2024
1 parent 7cff7b4 commit 639fd54
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions lib/galaxy/tool_util/deps/singularity_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,12 @@

DEFAULT_WORKING_DIRECTORY = None
DEFAULT_SINGULARITY_COMMAND = "singularity"
# --cleanenv --pid --ipc --contain is equivalent to the --containall flag.
# This isolates a singularity container in the same way as a Docker container
# would be isolated. --contain ensures no "default mounts" are mounted, the
# default mounts include $HOME and that might affect reproducibility due to
# settings files in $HOME. --pid isolates the pid namespace. --ipc isolates
# --pid isolates the pid namespace. --ipc isolates
# the ipc namespace, this fixes some issues with python multiprocessing.
# --cleanenv makes sure the current environment is not inherited.
DEFAULT_CLEANENV = True
DEFAULT_IPC = True
DEFAULT_PID = True
DEFAULT_MOUNT_HOME = False
DEFAULT_NO_MOUNT = ["tmp"]
DEFAULT_SUDO = False
DEFAULT_SUDO_COMMAND = "sudo"
Expand Down

0 comments on commit 639fd54

Please sign in to comment.