mirror of
https://github.com/YunoHost-Apps/haste_ynh.git
synced 2024-09-03 20:36:28 +02:00
0e1eafe7e0
* Upgrade to v0.1.2024.07.26 (#49) (#50)
* Upgrade sources
- `main` v0.1.2024.07.26: 87a6a88449...a56763258b
* Auto-update READMEs
Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com>
* [autopatch] Automatic patch attempt for helpers 2.1
* cleaning
---------
Co-authored-by: eric_G <46165813+ericgaspar@users.noreply.github.com>
Co-authored-by: Yunohost-Bot <>
71 lines
2 KiB
Bash
Executable file
71 lines
2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
source ../settings/scripts/_common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# INSTALL NODEJS
|
|
#=================================================
|
|
ynh_script_progression "Reinstalling dependencies..."
|
|
|
|
ynh_nodejs_install
|
|
|
|
#=================================================
|
|
# RESTORE THE APP MAIN DIR
|
|
#=================================================
|
|
ynh_script_progression "Restoring the app main directory..."
|
|
|
|
ynh_restore "$install_dir"
|
|
|
|
#=================================================
|
|
# RESTORE VARIOUS FILES
|
|
#=================================================
|
|
ynh_script_progression "Restoring the data directory..."
|
|
|
|
ynh_restore "$data_dir"
|
|
|
|
chown -R $app:www-data "$data_dir"
|
|
|
|
#=================================================
|
|
# RESTORE BINARY
|
|
#=================================================
|
|
ynh_script_progression "Restoring various files..."
|
|
|
|
ynh_restore "/usr/bin/$app"
|
|
chmod +x /usr/bin/$app
|
|
|
|
#=================================================
|
|
# RESTORE HANDLE LOG FILES
|
|
#=================================================
|
|
|
|
mkdir -p /var/log/$app
|
|
touch /var/log/$app/$app.log
|
|
|
|
#=================================================
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
#=================================================
|
|
ynh_script_progression "Integrating service in YunoHost..."
|
|
|
|
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
ynh_restore "/etc/logrotate.d/$app"
|
|
|
|
ynh_restore "/etc/systemd/system/$app.service"
|
|
systemctl enable $app.service --quiet
|
|
|
|
yunohost service add $app --description="Haste is a pastebin software" --log="/var/log/$app/$app.log"
|
|
|
|
#=================================================
|
|
# START SYSTEMD SERVICE
|
|
#=================================================
|
|
ynh_script_progression "Starting $app's systemd service..."
|
|
|
|
ynh_systemctl --service=$app --action=start
|
|
|
|
ynh_systemctl --service=nginx --action=reload
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression "Restoration completed for $app"
|