mirror of
https://github.com/YunoHost-Apps/20euros_ynh.git
synced 2024-09-03 18:05:53 +02:00
869473d04d
* Cleaning up (#9) * Update README_fr.md * cleaning up * Fix package_checker warning * permission rework * From source * Update app.src * fix * fix * Set SVG badge * Update README_fr.md * Small fix * Small fixes * Cleaning up * Update manifest.json * Update change_url * Update manifest.json * Update upgrade * Add user * Fix * fix * Update install * Fix * [autopatch] Update issue and PR templates (#16) * Testing (#13) - Set permissions * [autopatch] Update issue and PR templates (#15) Co-authored-by: Yunohost-Bot <> * [autopatch] Update issue and PR templates Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> * Update manifest.json * Update check_process * Update restore * Cleaning up * Auto-update README * Auto-update README * Update manifest.json * Auto-update README * update to 4.3 * Update manifest.json * Auto-update README * Update manifest.json * Auto-update README * Auto-update README * Update manifest.json * Update manifest.json * Auto-update README * V2 (#20) * v2 * Auto-update README * V2 * Auto-update README * Fix * Auto-update README * Auto-update README * Create description.md * Update manifest.toml * Auto-update README * Update install --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Delete description.md * Create DESCRIPTION.md * Auto-update README * Fix * Auto-update README * src * Update manifest.toml * Auto-update README --------- Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> Co-authored-by: yunohost-bot <yunohost@yunohost.org>
29 lines
940 B
Bash
29 lines
940 B
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC STARTING
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# MODIFY URL IN NGINX CONF
|
|
#=================================================
|
|
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=3
|
|
|
|
ynh_change_url_nginx_config
|
|
|
|
#=================================================
|
|
# RELOAD NGINX
|
|
#=================================================
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=2
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Change of URL completed for $app" --last
|