mirror of
https://github.com/YunoHost-Apps/gogs_ynh.git
synced 2024-09-03 20:36:23 +02:00
Fix DATADIR to datadir
This commit is contained in:
parent
3962a29643
commit
4c50d7e548
2 changed files with 4 additions and 3 deletions
|
@ -27,6 +27,8 @@ admin=$YNH_APP_ARG_ADMIN
|
||||||
is_public=$YNH_APP_ARG_IS_PUBLIC
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
||||||
secret_key=$(ynh_string_random)
|
secret_key=$(ynh_string_random)
|
||||||
|
|
||||||
|
datadir=/home/$app
|
||||||
|
|
||||||
app=$YNH_APP_INSTANCE_NAME
|
app=$YNH_APP_INSTANCE_NAME
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -73,7 +75,7 @@ ynh_script_progression --message="Configuring system user..."
|
||||||
# Create a system user
|
# Create a system user
|
||||||
# We can't use the official helper because we need to set the shell for the login
|
# We can't use the official helper because we need to set the shell for the login
|
||||||
test getent passwd "$app" &>/dev/null || \
|
test getent passwd "$app" &>/dev/null || \
|
||||||
useradd -d "$DATADIR" --system --user-group "$app" --shell /bin/bash || \
|
useradd -d "$datadir" --system --user-group "$app" --shell /bin/bash || \
|
||||||
ynh_die "Unable to create $app system account"
|
ynh_die "Unable to create $app system account"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -119,7 +121,6 @@ ynh_add_nginx_config
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Creating a data directory..."
|
ynh_script_progression --message="Creating a data directory..."
|
||||||
|
|
||||||
datadir=/home/$app
|
|
||||||
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
|
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
|
||||||
|
|
||||||
mkdir -p "$datadir/avatars"
|
mkdir -p "$datadir/avatars"
|
||||||
|
|
|
@ -56,7 +56,7 @@ ynh_script_progression --message="Recreating the dedicated system user..."
|
||||||
# Create the dedicated user (if not existing)
|
# Create the dedicated user (if not existing)
|
||||||
# We can't use the official helper because we need to set the shell for the login
|
# We can't use the official helper because we need to set the shell for the login
|
||||||
test getent passwd "$app" &>/dev/null || \
|
test getent passwd "$app" &>/dev/null || \
|
||||||
useradd -d "$DATADIR" --system --user-group "$app" --shell /bin/bash || \
|
useradd -d "$datadir" --system --user-group "$app" --shell /bin/bash || \
|
||||||
ynh_die "Unable to create $app system account"
|
ynh_die "Unable to create $app system account"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Add table
Reference in a new issue