mirror of
https://github.com/YunoHost-Apps/pyinventory_ynh.git
synced 2024-09-03 20:16:09 +02:00
154 lines
5.1 KiB
Bash
Executable file
154 lines
5.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# Install parameters are automatically saved as settings
|
|
#
|
|
# Settings are automatically loaded as bash variables
|
|
# in every app script context, therefore typically these will exist:
|
|
# - $domain
|
|
# - $path
|
|
# - $language
|
|
# ... etc
|
|
#
|
|
# Resources defined in the manifest are provisioned prior to this script
|
|
# and corresponding settings are also available, such as:
|
|
# - $install_dir
|
|
# - $port
|
|
# - $db_name
|
|
# ...
|
|
|
|
#
|
|
# $app is the app id (i.e. 'example' for first install,
|
|
# or 'example__2', '__3', ... for multi-instance installs)
|
|
#
|
|
|
|
#=================================================
|
|
# SETTINGS
|
|
#=================================================
|
|
ynh_script_progression "Storing installation settings..."
|
|
|
|
# Logging:
|
|
log_file="/var/log/$app/$app.log"
|
|
ynh_app_setting_set --key=log_file --value="$log_file"
|
|
|
|
# Redis:
|
|
redis_db=$(ynh_redis_get_free_db)
|
|
ynh_app_setting_set --key=redis_db --value="$redis_db"
|
|
|
|
# App settings:
|
|
ynh_app_setting_set --key=default_from_email --value="$default_from_email"
|
|
ynh_app_setting_set --key=admin_email --value="$admin_email"
|
|
ynh_app_setting_set --key=debug_enabled --value="$debug_enabled"
|
|
ynh_app_setting_set --key=log_level --value="$log_level"
|
|
|
|
#=================================================
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
#=================================================
|
|
ynh_script_progression "Validating installation parameters..."
|
|
|
|
mkdir -p "$install_dir/media" "$install_dir/static"
|
|
|
|
#=================================================
|
|
# SETUP LOG FILE
|
|
#=================================================
|
|
ynh_script_progression "Setup logging..."
|
|
|
|
myynh_setup_log_file
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
ynh_config_add_logrotate "$log_file"
|
|
|
|
#=================================================
|
|
# PYTHON VIRTUALENV
|
|
#=================================================
|
|
ynh_script_progression "Create and setup Python virtualenv..."
|
|
cp ../conf/requirements.txt "$data_dir/requirements.txt"
|
|
myynh_setup_python_venv
|
|
|
|
#=================================================
|
|
# copy config files
|
|
# ================================================
|
|
ynh_script_progression "Create $app configuration files..."
|
|
|
|
ynh_config_add --template="gunicorn.conf.py" --destination="$data_dir/gunicorn.conf.py"
|
|
|
|
ynh_config_add --template="manage.py" --destination="$data_dir/manage.py"
|
|
chmod -c +x "$data_dir/manage.py"
|
|
|
|
ynh_config_add --template="settings.py" --destination="$data_dir/settings.py"
|
|
ynh_config_add --template="setup_user.py" --destination="$data_dir/setup_user.py"
|
|
ynh_config_add --template="urls.py" --destination="$data_dir/urls.py"
|
|
ynh_config_add --template="wsgi.py" --destination="$data_dir/wsgi.py"
|
|
|
|
touch "$data_dir/local_settings.py"
|
|
|
|
#=================================================
|
|
# MIGRATE / COLLECTSTATIC / CREATEADMIN
|
|
#=================================================
|
|
ynh_script_progression "migrate/collectstatic/createadmin..."
|
|
|
|
cd "$data_dir" || exit
|
|
|
|
# Just for debugging:
|
|
./manage.py diffsettings
|
|
|
|
./manage.py migrate --no-input
|
|
./manage.py collectstatic --no-input
|
|
|
|
# Create/update Django superuser (set unusable password, because auth done via SSOwat):
|
|
./manage.py create_superuser --username="$admin" --email="$(ynh_user_get_info "$admin" mail)"
|
|
|
|
# Check the configuration
|
|
# This may fail in some cases with errors, etc., but the app works and the user can fix issues later.
|
|
./manage.py check --deploy || true
|
|
|
|
#=================================================
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
#=================================================
|
|
ynh_script_progression "Integrating service in YunoHost..."
|
|
|
|
yunohost service add $app
|
|
|
|
#=================================================
|
|
# SECURE FILES AND DIRECTORIES
|
|
#=================================================
|
|
ynh_script_progression "Set file permissions..."
|
|
myynh_fix_file_permissions
|
|
|
|
#=================================================
|
|
# SETUP SYSTEMD
|
|
#=================================================
|
|
ynh_script_progression "Configuring systemd service '$app'..."
|
|
|
|
# https://yunohost.org/en/packaging_apps_helpers#ynh-add-systemd-config
|
|
# https://github.com/YunoHost/yunohost/blob/dev/helpers/systemd
|
|
ynh_config_add_systemd
|
|
|
|
#=================================================
|
|
# Start the app server via systemd
|
|
#=================================================
|
|
ynh_script_progression "Starting systemd service '$app'..."
|
|
|
|
ynh_systemctl --service=$app --action="start" --log_path="$log_file"
|
|
|
|
#=================================================
|
|
# NGINX CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression "Configuring nginx web server..."
|
|
|
|
# Create a dedicated nginx config
|
|
# https://yunohost.org/en/contribute/packaging_apps/helpers
|
|
# https://github.com/YunoHost/yunohost/blob/dev/helpers/nginx
|
|
ynh_config_add_nginx "public_path" "port"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression "Installation of $app completed"
|