mirror of
https://github.com/YunoHost-Apps/libreerp_ynh.git
synced 2024-09-03 19:36:13 +02:00
100 lines
3.1 KiB
Bash
100 lines
3.1 KiB
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# INITIALIZE AND STORE SETTINGS
|
|
#=================================================
|
|
|
|
preinstall=0
|
|
|
|
#=================================================
|
|
# ADD SWAP
|
|
#=================================================
|
|
|
|
# if ! ynh_in_ci_tests; then
|
|
# ynh_script_progression "Adding swap..."
|
|
# ynh_add_swap --size=$swap_needed
|
|
# fi
|
|
|
|
#=================================================
|
|
# CREATE A POSTGRESQL DATABASE
|
|
#=================================================
|
|
ynh_script_progression "Configuring $app's PostgreSQL database..."
|
|
|
|
# Make sure that its encoding is UTF-8
|
|
ynh_psql_db_shell <<< "update pg_database set encoding = pg_char_to_encoding('UTF8') where datname = '$db_name'"
|
|
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
ynh_script_progression "Setting up source files..."
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
setup_files
|
|
|
|
#=================================================
|
|
# BUILD APP
|
|
#=================================================
|
|
ynh_script_progression "Building app..."
|
|
|
|
pushd "$install_dir"
|
|
ynh_hide_warnings ynh_exec_as_app \
|
|
RUSTUP_HOME="$install_dir/.rustup" \
|
|
CARGO_HOME="$install_dir/.cargo" \
|
|
bash -c 'curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -q -y'
|
|
|
|
export PATH="$PATH:$install_dir/.cargo/bin:$install_dir/.local/bin:/usr/local/sbin"
|
|
|
|
if grep "python3" "$install_dir/$appname/$FORKNAME-bin" ; then
|
|
python3 -m venv venv
|
|
venv/bin/pip3 install --upgrade pip
|
|
venv/bin/pip3 install wheel
|
|
venv/bin/pip3 install -r "$appname/requirements.txt"
|
|
else
|
|
virtualenv venv
|
|
venv/bin/pip3 install --upgrade pip
|
|
venv/bin/pip install wheel
|
|
venv/bin/pip install -r "$appname/requirements.txt"
|
|
fi
|
|
ynh_safe_rm "$install_dir/.cargo"
|
|
ynh_safe_rm "$install_dir/.rustup"
|
|
popd
|
|
|
|
#=================================================
|
|
# SETUP DATABASE
|
|
#=================================================
|
|
ynh_script_progression "Setting up the database..."
|
|
|
|
setup_database
|
|
|
|
#=================================================
|
|
# SYSTEM CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression "Adding system configurations related to $app..."
|
|
|
|
# Create a dedicated NGINX config
|
|
ynh_config_add_nginx
|
|
|
|
# Create a dedicated systemd config
|
|
ynh_config_add_systemd
|
|
yunohost service add "$app" --log="/var/log/$app.log"
|
|
|
|
#=================================================
|
|
# START SYSTEMD SERVICE
|
|
#=================================================
|
|
ynh_script_progression "Starting $app's systemd service..."
|
|
|
|
# Start a systemd service
|
|
ynh_systemctl --service="$app" --action="start" --log_path="/var/log/$app.log"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression "Installation of $app completed"
|