Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add flexibility to galaxy_dirs, galaxy_privsep_dirs defaults #222

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ galaxy_create_privsep_user: "{{ galaxy_create_user if __galaxy_privsep_user_name
galaxy_log_dir: "{{ galaxy_mutable_data_dir }}/log"

# Directories to create as the Galaxy user if galaxy_manage_paths is enabled
galaxy_dirs:
__galaxy_dirs:
- "{{ galaxy_mutable_data_dir }}"
- "{{ galaxy_mutable_config_dir }}"
- "{{ galaxy_cache_dir }}"
Expand All @@ -111,16 +111,20 @@ galaxy_dirs:
- "{{ galaxy_tool_data_path }}"
- "{{ galaxy_log_dir }}"

galaxy_dirs: "{{ __galaxy_dirs }}"

# Additional directories to create as the Galaxy user, so you don't have to copy the default galaxy_dirs
galaxy_extra_dirs: []

# Directories to create as the privilege separated user if galaxy_manage_paths is enabled
galaxy_privsep_dirs:
__galaxy_privsep_dirs:
- "{{ galaxy_venv_dir }}"
- "{{ galaxy_server_dir }}"
- "{{ galaxy_config_dir }}"
- "{{ galaxy_local_tools_dir }}"

galaxy_privsep_dirs: "{{ __galaxy_privsep_dirs }}"

# Additional directories to create as the privilege separated user, so you don't have to copy the default galaxy_dirs
galaxy_extra_privsep_dirs: []

Expand Down
Loading