puppet-mastodon/templates/install_ruby.sh.erb

8 lines
295 B
Text
Raw Normal View History

2023-11-28 08:20:18 +01:00
#!/bin/bash
set -euo pipefail
if [ ! -e '<%= @mastodon_home %>/.rbenv/versions/<%= @ruby_version %>/bin/ruby' ]; then
cd '<%= @mastodon_home %>'
2023-11-28 08:50:37 +01:00
sudo -u <%= @mastodon_user %> RUBY_CONFIGURE_OPTS=--with-jemalloc '<%= @mastodon_home %>/.rbenv/bin/rbenv' install '<%= @ruby_version %>'
2023-11-28 08:20:18 +01:00
fi