puppet-mastodon/templates/install_ruby.sh.erb
2023-11-28 09:31:52 +02:00

8 lines
308 B
Text

#!/bin/bash
set -euo pipefail
if [ ! -e '<%= @mastodon_home %>/.rbenv/versions/<%= @ruby_version %>/bin/ruby' ]; then
cd '<%= @mastodon_home %>'
source '<%= @mastodon_home %>/.bashrc'
RUBY_CONFIGURE_OPTS=--with-jemalloc '<%= @mastodon_home %>/.rbenv/bin/rbenv' install '<%= @ruby_version %>'
fi