Skip to content
Open
Show file tree
Hide file tree
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
46 changes: 46 additions & 0 deletions files/repeatexplorer-elixir.cerit-sc.cz/patch/login_page.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
--- client/src/components/Login/LoginForm.vue 2026-09-07 10:02:10.555050572 +0000
+++ client/src/components/Login/LoginForm.vue 2026-09-07 10:39:54.269463354 +0000
@@ -183,7 +183,7 @@
<BForm v-if="!disableLocalAccounts" id="login" @submit.prevent="submitLogin()">
<!-- standard internal galaxy login -->
<BFormGroup
- :label="localize('Public Name or Email Address')"
+ :label="localize('Registered login')"
label-for="login-form-name">
<BFormInput
v-if="!connectExternalProvider"
@@ -216,10 +216,9 @@

<a
v-localize
- href="javascript:void(0)"
- role="button"
- @click.prevent="resetLogin">
- Click here to reset your password.
+ href="mailto:regalaxy@rt.cesnet.cz?subject=RepeatExplorer Galaxy: password reset request"
+ role="button">
+ Click here and ask the support team to reset your password.
</a>
</BFormText>
</BFormGroup>
@@ -255,16 +254,12 @@
<BCardFooter>
<span v-if="!connectExternalProvider">
Don't have an account?
- <GLink
- v-if="allowUserCreation && !disableLocalAccounts"
+ <a
id="register-toggle"
- to="/register/start">
+ href="https://metavo.metacentrum.cz/osobniv3/wayf/elixir.jsp"
+ role="button">
Register here.
- </GLink>
- <span v-else data-description="registration disabled message">
- Registration for this Galaxy instance is disabled. Please contact an
- administrator for assistance.
- </span>
+ </a>
</span>
<span v-else>
Do not wish to connect to an external provider?
17 changes: 17 additions & 0 deletions galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,23 @@
when: enable_telegraf | bool

post_tasks:
- name: Adjust login page on RE (apply patch)
ansible.posix.patch:
src: "{{ playbook_dir }}/files/{{inventory_hostname}}/patch/login_page.patch"
basedir: "{{ galaxy_root }}/server"
backup: true
when: "inventory_hostname in ['repeatexplorer-elixir.cerit-sc.cz','galaxy-qa2.galaxy.cloud.e-infra.cz']"
- name: Adjust login page on RE (build client)
shell:
cmd: make client-production
chdir: "{{ galaxy_root }}/server"
environment:
VENV: "{{ galaxy_venv_dir }}"
VIRTUAL_ENV: "{{ galaxy_venv_dir }}"
PATH: "{{ galaxy_venv_dir }}/bin:{{ ansible_env.PATH }}"
COREPACK_ENABLE_DOWNLOAD_PROMPT: 0
when: "inventory_hostname in ['repeatexplorer-elixir.cerit-sc.cz','galaxy-qa2.galaxy.cloud.e-infra.cz']"

- name: Add Nginx warning about maintenance
ansible.builtin.copy:
src: "{{ playbook_dir }}/files/nginx/warning.html"
Expand Down
6 changes: 2 additions & 4 deletions host_vars/repeatexplorer-elixir.cerit-sc.cz/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,8 @@ extra_certbot_domains:
- galaxy-re.grid.cesnet.cz
- galaxyelixir.vm.cesnet.cz

#galaxy_commit_id: 72070dbd0a6d0f418d0b8f914825ea2b8e6a0a88
galaxy_repo: https://github.com/CESNET/galaxy.git
galaxy_commit_id: release_25.0_regalaxy
galaxy_build_client: false
galaxy_commit_id: release_26.1
galaxy_build_client: true

galaxy_systemd_nofile_limit: 150000

Expand Down