mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
Use helpers for user creation and deletion
This commit is contained in:
parent
f0da3da5dc
commit
709d745b73
3 changed files with 7 additions and 7 deletions
|
@ -121,8 +121,8 @@ ynh_replace_string "//ws/" "/ws/" "$finalnginxconf" # Avoid duplicate /
|
|||
# CREATE DEDICATED USER
|
||||
#=================================================
|
||||
|
||||
# Create movim system user and set permissions
|
||||
useradd -d /var/www/movim -s /bin/sh movim
|
||||
# Create a system user
|
||||
ynh_system_user_create "$app"
|
||||
|
||||
#=================================================
|
||||
# PHP-FPM CONFIGURATION
|
||||
|
|
|
@ -82,5 +82,5 @@ fi
|
|||
# REMOVE DEDICATED USER
|
||||
#=================================================
|
||||
|
||||
ynh_system_user_exists movim \
|
||||
&& userdel movim
|
||||
# Delete a system user
|
||||
ynh_system_user_delete "$app"
|
||||
|
|
|
@ -84,9 +84,8 @@ ynh_add_nginx_config
|
|||
# CREATE DEDICATED USER
|
||||
#=================================================
|
||||
|
||||
# Create movim user if not exists and set permissions
|
||||
ynh_system_user_exists movim \
|
||||
|| useradd -d /var/www/movim -s /bin/sh movim
|
||||
# Create a dedicated user (if not existing)
|
||||
ynh_system_user_create "$app"
|
||||
|
||||
#=================================================
|
||||
# PHP-FPM CONFIGURATION
|
||||
|
@ -140,6 +139,7 @@ ynh_app_setting_delete "$app" skipped_uris
|
|||
yunohost app clearaccess movim
|
||||
|
||||
# Replace old public_site variable (if exists) by ssoenabled
|
||||
# TODO: add clean support for old/new setting public_site/ssoenabled
|
||||
if [ ! -z "$public_site" ]; then
|
||||
[[ $public_site = "Yes" ]] \
|
||||
&& ssoenabled="No" \
|
||||
|
|
Loading…
Reference in a new issue