1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/libreddit_ynh.git synced 2024-09-03 19:36:05 +02:00
libreddit_ynh/scripts/install

48 lines
1.4 KiB
Text
Raw Normal View History

2022-03-22 11:30:59 +01:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-08-15 08:23:42 +02:00
ynh_script_progression "Setting up source files..."
2022-03-22 11:30:59 +01:00
2022-11-04 21:40:27 +01:00
ynh_setup_source --dest_dir="$install_dir"
2022-03-22 11:30:59 +01:00
2024-08-14 18:46:07 +02:00
chmod +x $install_dir/redlib
2022-03-22 11:30:59 +01:00
#=================================================
2023-02-26 11:36:13 +01:00
# SYSTEM CONFIGURATION
2022-03-22 11:30:59 +01:00
#=================================================
2024-08-15 08:23:42 +02:00
ynh_script_progression "Adding system configurations related to $app..."
2022-03-22 11:30:59 +01:00
2024-08-15 08:23:42 +02:00
ynh_config_add_nginx
2022-03-22 11:30:59 +01:00
2024-08-15 08:23:42 +02:00
ynh_config_add_systemd
2023-02-26 11:36:13 +01:00
yunohost service add $app --description="Alternative to Reddit" --log="/var/log/$app/$app.log"
2022-03-22 11:30:59 +01:00
#=================================================
# ADD A CONFIGURATION
#=================================================
2024-08-15 08:23:42 +02:00
ynh_script_progression "Adding $app's configuration..."
2022-03-22 11:30:59 +01:00
2024-08-15 08:23:42 +02:00
ynh_config_add --template="redlib.conf" --destination="$install_dir/redlib.conf"
2022-03-22 11:30:59 +01:00
2024-08-14 13:24:15 +02:00
chmod 400 "$install_dir/redlib.conf"
chown $app:$app "$install_dir/redlib.conf"
2022-03-22 11:30:59 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-08-15 08:23:42 +02:00
ynh_script_progression "Starting $app's systemd service..."
2022-03-22 11:30:59 +01:00
2024-08-15 08:23:42 +02:00
ynh_systemctl --service=$app --action="start" --log_path="systemd"
2022-03-22 11:30:59 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2024-08-15 08:23:42 +02:00
ynh_script_progression "Installation of $app completed"