puppet-mastodon/templates/install_ruby.sh.erb

9 lines
245 B
Text
Raw Normal View History

2023-11-28 08:20:18 +01:00
#!/bin/bash
set -euo pipefail
su mastodon
if [ ! -e "<%= @mastodon_home %>/.rbenv/versions/3.2.2/bin/ruby" ]; then
cd "<%= @mastodon_home %>"
RUBY_CONFIGURE_OPTS=--with-jemalloc "<%= @mastodon_home %>/.rbenv/bin/rbenv" install 3.2.2
fi