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

[Geaccirc] Updates bundler version #5384

Merged
merged 1 commit into from
Sep 25, 2024
Merged
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
2 changes: 2 additions & 0 deletions group_vars/geaccirc/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ running_on_server: true
ruby_version_override: "ruby-3.1.3"
install_ruby_from_source: true
passenger_ruby: "/usr/local/bin/ruby"
passenger_extra_http_config:
- "passenger_preload_bundler on;"
13 changes: 13 additions & 0 deletions roles/geaccirc/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
---
# tasks file for roles/geaccirc
- name: geaccirc | update rubygems
ansible.builtin.command: gem update --system 3.5.13
become: true
register: update_rubygems
changed_when: '"Latest version already installed. Done." not in update_rubygems.stdout'
tags: rubygems

- name: geaccirc | install default bundler
ansible.builtin.command: gem install --default bundler:2.5.13
become: true
register: install_default_bundler
changed_when: '"Fetching bundler-2.5.13.gem" in install_default_bundler.stdout'
tags: rubygems
Loading