Skip to content

Commit

Permalink
Merge pull request #5719 from pulibrary/fix-mailcatcher-on-catalog-st…
Browse files Browse the repository at this point in the history
…aging-and-qa
  • Loading branch information
maxkadel authored Jan 9, 2025
2 parents 36e1cee + 7d7fd74 commit 00513a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion group_vars/orangelight/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ install_mailcatcher: true
mailcatcher_user: "pulsys"
mailcatcher_group: "pulsys"
mailcatcher_version: 0.10.0
mailcatcher_install_location: "/usr/local/lib/ruby/gems/3.1.0/gems/mailcatcher-{{ mailcatcher_version }}/bin/mailcatcher"
mailcatcher_install_location: "{{ global_gems_directory }}/mailcatcher-{{ mailcatcher_version }}/bin/mailcatcher"
ol_smtp_host: 'localhost'
ol_smtp_port: 1025
ol_bibdata_base: 'https://bibdata-qa.princeton.edu'
Expand Down
2 changes: 1 addition & 1 deletion group_vars/orangelight/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ install_mailcatcher: true
mailcatcher_user: "pulsys"
mailcatcher_group: "pulsys"
mailcatcher_version: 0.10.0
mailcatcher_install_location: "/usr/local/lib/ruby/gems/3.1.0/gems/mailcatcher-{{ mailcatcher_version }}/bin/mailcatcher"
mailcatcher_install_location: "{{ global_gems_directory }}/mailcatcher-{{ mailcatcher_version }}/bin/mailcatcher"
ol_smtp_host: 'localhost'
ol_smtp_port: 1025
ol_bibdata_base: 'https://bibdata-staging.lib.princeton.edu'
Expand Down
2 changes: 2 additions & 0 deletions roles/ruby_s/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
# defaults file for roles/ruby_s
ruby_version: "{{ ruby_version_override | default(ruby_version_default) }}"
ruby_version_default: "ruby-3.1.3"
ruby_minor_version: "{{ ruby_version | regex_search('ruby-([0-9]\\.[0-9])\\.[0-9]', '\\1') | first }}"
ubuntu_ruby_version: "{{ ubuntu_ruby_version_override | default(ubuntu_ruby_version_default) }}"
ubuntu_ruby_version_default: "ruby2.7"
install_path: /opt/install
global_gems_directory: "/usr/local/lib/ruby/gems/{{ ruby_minor_version }}.0/gems"
ruby_yjit: false

0 comments on commit 00513a9

Please sign in to comment.