2018-04-14 09:33:23 +02:00
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# GENERIC START
|
|
|
|
|
#=================================================
|
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
|
#=================================================
|
|
|
|
|
|
2018-04-24 17:45:19 +02:00
|
|
|
|
source _common.sh
|
2020-04-27 13:41:00 +02:00
|
|
|
|
source /usr/share/yunohost/helpers
|
2018-04-14 09:33:23 +02:00
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# LOAD SETTINGS
|
|
|
|
|
#=================================================
|
2020-05-30 17:05:03 +02:00
|
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2018-04-14 09:33:23 +02:00
|
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
2020-04-27 13:41:00 +02:00
|
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
|
admin=$(ynh_app_setting_get --app=$app --key=admin)
|
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
|
|
|
|
|
redis_db=$(ynh_app_setting_get --app=$app --key=redis_db)
|
2020-04-28 19:20:16 +02:00
|
|
|
|
unicorn_workers=$(ynh_app_setting_get --app=$app --key=unicorn_workers)
|
2018-04-14 09:33:23 +02:00
|
|
|
|
|
2021-03-08 21:40:57 +01:00
|
|
|
|
# Check memory requirements
|
|
|
|
|
check_memory_requirements_upgrade
|
2018-04-30 18:53:20 +02:00
|
|
|
|
|
2018-04-14 09:33:23 +02:00
|
|
|
|
#=================================================
|
2020-04-27 13:41:00 +02:00
|
|
|
|
# CHECK VERSION
|
2018-04-14 09:33:23 +02:00
|
|
|
|
#=================================================
|
2020-05-30 17:05:03 +02:00
|
|
|
|
ynh_script_progression --message="Checking version..."
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2018-04-14 09:33:23 +02:00
|
|
|
|
|
2020-04-28 19:20:16 +02:00
|
|
|
|
#=================================================
|
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
|
#=================================================
|
2020-06-02 17:48:25 +02:00
|
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..."
|
2020-04-28 19:20:16 +02:00
|
|
|
|
|
2020-05-12 17:22:55 +02:00
|
|
|
|
# If unicorn_workers doesn't exist, create it
|
2020-04-28 19:20:16 +02:00
|
|
|
|
if [ -z "$unicorn_workers" ]
|
|
|
|
|
then
|
|
|
|
|
# We assume for the moment that ARM devices are only dual core, so
|
|
|
|
|
# we restrict the number of workers to 2 (the default is 3)
|
|
|
|
|
if [ -n "$(uname -m | grep arm)" ]
|
|
|
|
|
then
|
|
|
|
|
unicorn_workers=2
|
|
|
|
|
else
|
|
|
|
|
unicorn_workers=3
|
|
|
|
|
fi
|
|
|
|
|
ynh_app_setting_set --app=$app --key=unicorn_workers --value=$unicorn_workers
|
|
|
|
|
fi
|
|
|
|
|
|
2021-03-07 01:39:02 +01:00
|
|
|
|
# Cleaning legacy permissions
|
|
|
|
|
if ynh_legacy_permissions_exists; then
|
|
|
|
|
ynh_legacy_permissions_delete_all
|
|
|
|
|
|
|
|
|
|
ynh_app_setting_delete --app=$app --key=is_public
|
|
|
|
|
fi
|
|
|
|
|
|
2020-04-27 13:41:00 +02:00
|
|
|
|
#=================================================
|
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
|
#=================================================
|
2020-05-30 17:05:03 +02:00
|
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
|
2018-04-14 09:33:23 +02:00
|
|
|
|
|
|
|
|
|
# Backup the current version of the app
|
2020-04-27 13:41:00 +02:00
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
|
ynh_clean_setup () {
|
2021-03-07 01:39:02 +01:00
|
|
|
|
ynh_clean_check_starting
|
|
|
|
|
# Restore it if the upgrade fails
|
2020-04-27 13:41:00 +02:00
|
|
|
|
ynh_restore_upgradebackup
|
|
|
|
|
}
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
|
ynh_abort_if_errors
|
2020-02-15 19:06:13 +01:00
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# ENABLE MAINTENANCE MODE
|
|
|
|
|
#=================================================
|
2020-05-30 17:05:03 +02:00
|
|
|
|
ynh_script_progression --message="Enabling maintenance mode..."
|
2020-02-15 19:06:13 +01:00
|
|
|
|
|
|
|
|
|
ynh_maintenance_mode_ON
|
|
|
|
|
|
2018-04-14 09:33:23 +02:00
|
|
|
|
#=================================================
|
2020-04-27 13:41:00 +02:00
|
|
|
|
# STANDARD UPGRADE STEPS
|
2018-04-14 09:33:23 +02:00
|
|
|
|
#=================================================
|
2020-04-27 13:41:00 +02:00
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
|
#=================================================
|
2020-05-30 17:05:03 +02:00
|
|
|
|
ynh_script_progression --message="Stopping a systemd service..."
|
2018-04-14 09:33:23 +02:00
|
|
|
|
|
2020-04-27 13:41:00 +02:00
|
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="$final_path/log/unicorn.stderr.log"
|
|
|
|
|
|
2021-04-10 01:48:01 +02:00
|
|
|
|
#=================================================
|
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
|
#=================================================
|
|
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..."
|
|
|
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path" --use_shell
|
|
|
|
|
|
2020-04-27 13:41:00 +02:00
|
|
|
|
#=================================================
|
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
|
#=================================================
|
|
|
|
|
|
2020-05-30 17:32:33 +02:00
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
|
then
|
|
|
|
|
ynh_script_progression --message="Upgrading source files..."
|
|
|
|
|
|
|
|
|
|
# Specific actions on ARM architecture
|
|
|
|
|
if [ -n "$(uname -m | grep arm)" ] ; then
|
|
|
|
|
# Unapply commit cf9b4a789b855b5199e98a13424e409854a8e848 that breaks ARM
|
|
|
|
|
# compatibility by pointing to a recent libv8 version
|
|
|
|
|
# This is due to this libv8 issue (https://github.com/cowboyd/libv8/issues/261)
|
|
|
|
|
# that prevents it from being compiled on ARM hence no binary gem is available yet
|
|
|
|
|
cp ../sources/patches_arm/* ../sources/patches
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Backup files to keep
|
|
|
|
|
tmpdir=$(mktemp -d)
|
|
|
|
|
cp -Rp $final_path/plugins $final_path/config/discourse.conf $tmpdir
|
|
|
|
|
if [ -d $final_path/public/uploads ] ; then
|
|
|
|
|
cp -Rp $final_path/public/uploads $tmpdir
|
|
|
|
|
fi
|
|
|
|
|
if [ -d $final_path/public/backups ] ; then
|
|
|
|
|
cp -Rp $final_path/public/backups $tmpdir
|
|
|
|
|
fi
|
|
|
|
|
if [ -d $final_path/log ] ; then
|
|
|
|
|
cp -Rp $final_path/log $tmpdir
|
|
|
|
|
fi
|
|
|
|
|
# Remove destination directory
|
|
|
|
|
ynh_secure_remove --file=$final_path
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
|
|
|
|
# Restore previous files
|
|
|
|
|
if [ -d $tmpdir/uploads ] ; then
|
|
|
|
|
cp -Rp $tmpdir/uploads $final_path/public
|
|
|
|
|
fi
|
|
|
|
|
if [ -d $tmpdir/backups ] ; then
|
|
|
|
|
cp -Rp $tmpdir/backups $final_path/public
|
|
|
|
|
fi
|
|
|
|
|
if [ -d $tmpdir/log ] ; then
|
|
|
|
|
cp -Rp $tmpdir/log $final_path
|
|
|
|
|
fi
|
|
|
|
|
(
|
|
|
|
|
cd $tmpdir/plugins/
|
|
|
|
|
for discourse_plugin_dir in */
|
|
|
|
|
do
|
|
|
|
|
# Only copy plugins not included in Discourse archive
|
|
|
|
|
if [ ! -d "$final_path/plugins/$discourse_plugin_dir" ]
|
|
|
|
|
then
|
|
|
|
|
cp -a "$discourse_plugin_dir" "$final_path/plugins/$discourse_plugin_dir"
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
)
|
2020-04-27 13:41:00 +02:00
|
|
|
|
cp -Rp $tmpdir/log $final_path
|
2020-05-30 17:32:33 +02:00
|
|
|
|
cp -p $tmpdir/discourse.conf $final_path/config
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
2020-05-30 17:32:33 +02:00
|
|
|
|
# Install LDAP plugin
|
|
|
|
|
ynh_secure_remove --file="$final_path/plugins/discourse-ldap-auth"
|
|
|
|
|
mkdir -p "$final_path/plugins/discourse-ldap-auth"
|
|
|
|
|
ynh_setup_source --dest_dir="$final_path/plugins/discourse-ldap-auth" --source_id=ldap-auth
|
|
|
|
|
fi
|
2018-04-14 09:33:23 +02:00
|
|
|
|
|
2021-04-10 01:48:01 +02:00
|
|
|
|
chmod 750 "$final_path"
|
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
|
chown -R root:$app "$final_path"
|
|
|
|
|
|
2018-04-14 09:33:23 +02:00
|
|
|
|
#=================================================
|
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
|
#=================================================
|
2021-03-07 01:39:02 +01:00
|
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..."
|
2018-04-14 09:33:23 +02:00
|
|
|
|
|
2021-03-07 01:39:02 +01:00
|
|
|
|
# Create a dedicated NGINX config
|
2018-06-03 17:56:14 +02:00
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
2018-04-14 09:33:23 +02:00
|
|
|
|
# Reference: https://meta.discourse.org/t/subfolder-support-with-docker/30507?u=falco&source_topic_id=54191
|
|
|
|
|
if [ "$path_url" != "/" ] ; then
|
2021-03-07 01:47:27 +01:00
|
|
|
|
ynh_replace_string --match_string='$proxy_add_x_forwarded_for' --replace_string='$http_your_original_ip_header' --target_file="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2018-04-14 09:33:23 +02:00
|
|
|
|
fi
|
2020-04-27 13:41:00 +02:00
|
|
|
|
ynh_store_file_checksum --file="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
|
#=================================================
|
2020-05-30 17:05:03 +02:00
|
|
|
|
ynh_script_progression --message="Upgrading dependencies..."
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
2021-03-07 01:39:02 +01:00
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2020-04-27 13:41:00 +02:00
|
|
|
|
ynh_install_ruby --ruby_version=$RUBY_VERSION
|
2021-03-11 02:35:15 +01:00
|
|
|
|
ynh_use_ruby
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
|
#=================================================
|
|
|
|
|
# CONFIGURE DISCOURSE
|
|
|
|
|
#=================================================
|
|
|
|
|
|
2020-05-30 17:32:33 +02:00
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
|
then
|
|
|
|
|
ynh_script_progression --message="Configuring Discourse..."
|
|
|
|
|
|
|
|
|
|
# Configure Discourse
|
|
|
|
|
discourse_config_file="$final_path/config/discourse.conf"
|
|
|
|
|
# Make a backup of the original config file if modified
|
|
|
|
|
ynh_backup_if_checksum_is_different --file="$discourse_config_file"
|
|
|
|
|
|
|
|
|
|
cp $final_path/config/discourse_defaults.conf $discourse_config_file
|
|
|
|
|
|
|
|
|
|
ynh_replace_string --match_string="db_name = discourse" --replace_string="db_name = $db_name" --target_file="$discourse_config_file"
|
|
|
|
|
ynh_replace_string --match_string="db_username = discourse" --replace_string="db_username = $db_name" --target_file="$discourse_config_file"
|
|
|
|
|
ynh_replace_string --match_string="db_password =" --replace_string="db_password = $db_pwd" --target_file="$discourse_config_file"
|
|
|
|
|
# Configure hostname
|
|
|
|
|
ynh_replace_string --match_string="hostname = \"www.example.com\"" --replace_string="hostname = \"$domain\"" --target_file="$discourse_config_file"
|
|
|
|
|
ynh_replace_string --match_string="relative_url_root =" --replace_string="relative_url_root = ${path_url%/}" --target_file="$discourse_config_file"
|
|
|
|
|
# Serve static assets (i.e. images, js, etc.)
|
|
|
|
|
ynh_replace_string --match_string="serve_static_assets = false" --replace_string="serve_static_assets = true" --target_file="$discourse_config_file"
|
|
|
|
|
# Don't show miniprofiler
|
|
|
|
|
ynh_replace_string --match_string="load_mini_profiler = true" --replace_string="load_mini_profiler = false" --target_file="$discourse_config_file"
|
|
|
|
|
# Configure e-mail server
|
|
|
|
|
admin_mail=$(ynh_user_get_info "$admin" mail)
|
|
|
|
|
ynh_replace_string --match_string="developer_emails =" --replace_string="developer_emails = $admin_mail" --target_file="$discourse_config_file"
|
|
|
|
|
ynh_replace_string --match_string="smtp_address =" --replace_string="smtp_address = localhost" --target_file="$discourse_config_file"
|
|
|
|
|
ynh_replace_string --match_string="smtp_domain =" --replace_string="smtp_domain = $domain" --target_file="$discourse_config_file"
|
|
|
|
|
ynh_replace_string --match_string="smtp_enable_start_tls = true" --replace_string="smtp_enable_start_tls = false" --target_file="$discourse_config_file"
|
|
|
|
|
# Configure redis
|
|
|
|
|
ynh_replace_string --match_string="redis_db = 0" --replace_string="redis_db = $redis_db" --target_file="$discourse_config_file"
|
|
|
|
|
# Don't notify on new versions (handled by the YunoHost package)
|
|
|
|
|
ynh_replace_string --match_string="new_version_emails = true" --replace_string="new_version_emails = false" --target_file="$discourse_config_file"
|
|
|
|
|
|
|
|
|
|
# Calculate and store the config file checksum
|
|
|
|
|
ynh_store_file_checksum --file="$discourse_config_file"
|
|
|
|
|
|
|
|
|
|
# Configure LDAP plugin
|
|
|
|
|
ldap_config_file="$final_path/plugins/discourse-ldap-auth/config/settings.yml"
|
|
|
|
|
# Make a backup of the original config file if modified
|
|
|
|
|
ynh_backup_if_checksum_is_different "$ldap_config_file"
|
|
|
|
|
|
|
|
|
|
ynh_replace_string --match_string="adfs.example.com" --replace_string="localhost" --target_file="$ldap_config_file"
|
|
|
|
|
ynh_replace_string --match_string="dc=example,dc=com" --replace_string="ou=users,dc=yunohost,dc=org" --target_file="$ldap_config_file"
|
|
|
|
|
ynh_replace_string --match_string="sAMAccountName" --replace_string="uid" --target_file="$ldap_config_file"
|
|
|
|
|
|
|
|
|
|
# Calculate and store the config file checksum
|
|
|
|
|
ynh_store_file_checksum --file="$ldap_config_file"
|
|
|
|
|
|
|
|
|
|
# Disable svgo worker
|
|
|
|
|
echo "svgo: false" > $final_path/.image_optim.yml
|
|
|
|
|
fi
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# SETUP UNICORN, A RUBY SERVER
|
|
|
|
|
#=================================================
|
|
|
|
|
|
2020-05-30 17:32:33 +02:00
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
|
then
|
|
|
|
|
ynh_script_progression --message="Setting up Unicorn..."
|
|
|
|
|
|
|
|
|
|
unicorn_config_file="$final_path/config/unicorn.conf.rb"
|
|
|
|
|
# Make a backup of the original config file if modified
|
|
|
|
|
ynh_backup_if_checksum_is_different "$unicorn_config_file"
|
|
|
|
|
|
2021-03-07 01:55:03 +01:00
|
|
|
|
# Calculate and store the config file checksum
|
2020-05-30 17:32:33 +02:00
|
|
|
|
ynh_store_file_checksum --file="$unicorn_config_file"
|
|
|
|
|
|
2021-03-07 01:55:03 +01:00
|
|
|
|
secret="$(ynh_string_random)"
|
|
|
|
|
ynh_add_config --template="../conf/secrets.yml" --destination="$final_path/config/secrets.yml"
|
2020-05-30 17:32:33 +02:00
|
|
|
|
|
|
|
|
|
# Set permissions to app files
|
|
|
|
|
chown -R $app: $final_path
|
|
|
|
|
|
2021-03-10 19:49:23 +01:00
|
|
|
|
pushd "$final_path"
|
2020-05-30 17:32:33 +02:00
|
|
|
|
# Install bundler, a gems installer
|
2021-03-08 21:38:47 +01:00
|
|
|
|
ynh_gem install bundler
|
2020-05-30 17:32:33 +02:00
|
|
|
|
# Install without documentation
|
|
|
|
|
exec_as $app echo "gem: --no-ri --no-rdoc" >> "$final_path/.gemrc"
|
2021-03-10 19:49:23 +01:00
|
|
|
|
popd
|
|
|
|
|
|
2020-05-30 17:32:33 +02:00
|
|
|
|
# Specific actions on ARM architecture
|
|
|
|
|
if [ -n "$(uname -m | grep arm)" ] ; then
|
2021-03-07 01:47:27 +01:00
|
|
|
|
# Define the platform specifically to retrieve binaries
|
|
|
|
|
# for libv8 because it currently doesn't compile on ARM devices
|
2021-03-08 21:38:47 +01:00
|
|
|
|
exec_login_as $app bin/bundle config specific_platform arm-linux
|
2020-05-30 17:32:33 +02:00
|
|
|
|
fi
|
|
|
|
|
# Install dependencies
|
2021-03-08 21:38:47 +01:00
|
|
|
|
exec_login_as $app bin/bundle config set path 'vendor/bundle'
|
|
|
|
|
exec_login_as $app bin/bundle config set with 'development'
|
|
|
|
|
exec_login_as $app MAKEFLAGS=-j2 bin/bundle install --jobs 2
|
2020-05-30 17:32:33 +02:00
|
|
|
|
|
|
|
|
|
# On ARM architecture, replace bundled libpsl by system native libpsl
|
|
|
|
|
# because the provided binary isn't compatible
|
|
|
|
|
if [ -n "$(uname -m | grep arm)" ] ; then
|
2021-03-07 01:47:27 +01:00
|
|
|
|
(
|
|
|
|
|
cd $final_path/vendor/bundle/ruby/*/gems/mini_suffix-*/vendor
|
|
|
|
|
rm libpsl.so
|
|
|
|
|
ln -s $(ldconfig -p | grep libpsl | awk 'END {print $NF}') libpsl.so
|
|
|
|
|
)
|
2020-05-30 17:32:33 +02:00
|
|
|
|
fi
|
2018-04-29 11:28:38 +02:00
|
|
|
|
fi
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
2018-04-14 09:33:23 +02:00
|
|
|
|
#=================================================
|
2020-04-27 13:41:00 +02:00
|
|
|
|
# PREPARE THE DATABASE
|
2018-04-14 09:33:23 +02:00
|
|
|
|
#=================================================
|
|
|
|
|
|
2020-05-30 17:32:33 +02:00
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
|
then
|
|
|
|
|
ynh_script_progression --message="Preparing the database..."
|
|
|
|
|
|
|
|
|
|
rake_exec="exec_login_as $app RAILS_ENV=production bin/rake"
|
2020-06-02 19:49:35 +02:00
|
|
|
|
ynh_exec_warn_less $rake_exec db:migrate
|
|
|
|
|
ynh_exec_warn_less $rake_exec assets:precompile
|
2020-05-30 17:32:33 +02:00
|
|
|
|
fi
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# CONFIGURE PLUGINS
|
|
|
|
|
#=================================================
|
|
|
|
|
|
2020-05-30 17:32:33 +02:00
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
|
then
|
|
|
|
|
ynh_script_progression --message="Configuring plugins..."
|
|
|
|
|
|
|
|
|
|
# Patch ldap-auth plugin dependency (omniauth-ldap) to fix it when using domain subfolder
|
|
|
|
|
# (Can only do that now because we are patching dependencies which have just been downloaded)
|
|
|
|
|
# Patch applied: https://github.com/omniauth/omniauth-ldap/pull/16
|
|
|
|
|
(
|
|
|
|
|
cd $final_path/plugins/discourse-ldap-auth/gems/${RUBY_VERSION}/gems/omniauth-ldap*/
|
|
|
|
|
patch -p1 < $YNH_CWD/../conf/ldap-auth-fix-subfolder.patch
|
|
|
|
|
)
|
|
|
|
|
fi
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
|
#=================================================
|
2021-03-07 01:39:02 +01:00
|
|
|
|
|
2020-05-30 17:32:33 +02:00
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
|
then
|
|
|
|
|
ynh_script_progression --message="Configuring a systemd service..."
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
2020-05-30 17:32:33 +02:00
|
|
|
|
ynh_replace_string --match_string="__RBENVROOT__" --replace_string="$RBENV_ROOT" --target_file="../conf/systemd.service"
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
2020-05-30 17:32:33 +02:00
|
|
|
|
additional_env="UNICORN_WORKERS=$unicorn_workers"
|
|
|
|
|
ynh_replace_string --match_string="__ADDITIONAL_ENV__" --replace_string="$additional_env" --target_file="../conf/systemd.service"
|
|
|
|
|
ynh_replace_string --match_string="__LIBJEMALLOC__" --replace_string="$(ldconfig -p | grep libjemalloc | awk 'END {print $NF}')" --target_file="../conf/systemd.service"
|
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
fi
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
2018-04-14 09:33:23 +02:00
|
|
|
|
#=================================================
|
2020-04-27 13:41:00 +02:00
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
|
#=================================================
|
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
|
#=================================================
|
2020-05-30 17:05:03 +02:00
|
|
|
|
ynh_script_progression --message="Securing files and directories..."
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
|
|
|
|
# Add a pids and socket directory for the systemd script.
|
|
|
|
|
mkdir -p "$final_path/tmp/pids"
|
2020-06-04 15:25:21 +02:00
|
|
|
|
mkdir -p "$final_path/tmp/sockets"
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
|
|
|
|
# Create specific folders and links for subfolder compatibilityn
|
|
|
|
|
# (see: https://meta.discourse.org/t/subfolder-support-with-docker/30507)
|
|
|
|
|
(
|
2020-05-30 17:32:33 +02:00
|
|
|
|
cd $final_path
|
|
|
|
|
mkdir -p "public/forum"
|
2020-06-05 13:59:07 +02:00
|
|
|
|
cd public/forum
|
|
|
|
|
if [ ! -L ./uploads ]; then
|
|
|
|
|
ln -s ../uploads
|
|
|
|
|
fi
|
|
|
|
|
if [ ! -L ./backups ]; then
|
|
|
|
|
ln -s ../backups
|
|
|
|
|
fi
|
2020-04-27 13:41:00 +02:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Set permissions to app files
|
|
|
|
|
chown -R $app: $final_path
|
|
|
|
|
# Restrict rights to log directory (needed by logrotate)
|
|
|
|
|
chmod g-w $final_path/log
|
|
|
|
|
|
|
|
|
|
#=================================================
|
2021-03-07 01:39:02 +01:00
|
|
|
|
# SETUP LOGROTATE
|
2018-04-14 09:33:23 +02:00
|
|
|
|
#=================================================
|
2021-03-07 01:39:02 +01:00
|
|
|
|
ynh_script_progression --message="Upgrading logrotate configuration..."
|
2018-04-14 09:33:23 +02:00
|
|
|
|
|
2021-03-07 01:39:02 +01:00
|
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
|
ynh_use_logrotate --logfile="$final_path/log/unicorn.stderr.log"
|
|
|
|
|
ynh_use_logrotate --logfile="$final_path/log/unicorn.stdout.log"
|
|
|
|
|
ynh_use_logrotate --logfile="$final_path/log/production.log"
|
2018-04-14 09:33:23 +02:00
|
|
|
|
|
|
|
|
|
#=================================================
|
2020-12-03 19:30:38 +01:00
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
|
#=================================================
|
|
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..."
|
|
|
|
|
|
2021-04-10 01:48:01 +02:00
|
|
|
|
yunohost service add $app --log="$final_path/log/unicorn.stderr.log" "$final_path/log/unicorn.stdout.log" "$final_path/log/production.log"
|
2020-12-03 19:30:38 +01:00
|
|
|
|
|
|
|
|
|
#=================================================
|
2020-04-27 13:41:00 +02:00
|
|
|
|
# START SYSTEMD SERVICE
|
2018-04-14 09:33:23 +02:00
|
|
|
|
#=================================================
|
2020-05-30 17:05:03 +02:00
|
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2018-04-14 09:33:23 +02:00
|
|
|
|
|
2020-04-27 13:41:00 +02:00
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="$final_path/log/unicorn.stderr.log" --line_match="INFO -- : worker=$((unicorn_workers-1)) ready"
|
2018-06-03 17:21:50 +02:00
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# DISABLE MAINTENANCE MODE
|
|
|
|
|
#=================================================
|
2020-05-30 17:05:03 +02:00
|
|
|
|
ynh_script_progression --message="Disabling maintenance mode..."
|
2018-06-03 17:21:50 +02:00
|
|
|
|
|
|
|
|
|
ynh_maintenance_mode_OFF
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# RELOAD NGINX
|
|
|
|
|
#=================================================
|
2021-03-07 01:39:02 +01:00
|
|
|
|
ynh_script_progression --message="Reloading NGINX web server..."
|
2020-04-27 13:41:00 +02:00
|
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# END OF SCRIPT
|
|
|
|
|
#=================================================
|
|
|
|
|
|
2020-05-30 17:05:03 +02:00
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed"
|