mirror of
https://github.com/YunoHost-Apps/duniter_ynh.git
synced 2024-09-03 18:26:35 +02:00
67e49bfb1e
Requires YnH v4.1 which implements this new permission system Use ynh_permission_create helper Set Duniter admin interface accessible to the selected admin BMA is set as accessible to visitors by default Remove / −> /webui redirection, since this change adds a tile to the admin Remove deprecated permission system settings Re-enable the web admin since it is protected again Rename f() name
26 lines
552 B
Bash
Executable file
26 lines
552 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
set -eu
|
|
|
|
# Source app helpers and functions
|
|
source /usr/share/yunohost/helpers
|
|
source functions.sh
|
|
|
|
# Retrive arguments
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
port=$(ynh_app_setting_get "$app" port)
|
|
arch=$(ynh_app_setting_get "$app" arch)
|
|
admin=$(ynh_app_setting_get "$app" admin)
|
|
|
|
REMOVE_DUNITER
|
|
INSTALL_DUNITER_DEBIAN_PACKAGE
|
|
INSTALL_SYSTEMD
|
|
CONFIGURE_DUNITER
|
|
|
|
# Start duniter service
|
|
systemctl start duniter
|
|
|
|
CONFIG_PERMISSIONS
|
|
CONFIG_NGINX
|