1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gitlab_ynh.git synced 2024-09-03 18:36:35 +02:00
gitlab_ynh/scripts/actions/web_account

57 lines
1.8 KiB
Text
Raw Normal View History

2019-04-11 01:12:07 +02:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS
#=================================================
# Get use_web_account
use_web_account=${YNH_ACTION_USE_WEB_ACCOUNT}
app=${YNH_APP_INSTANCE_NAME:-$YNH_APP_ID}
#=================================================
# CHECK IF ARGUMENTS ARE CORRECT
#=================================================
#=================================================
# CHECK IF AN ACTION HAS TO BE DONE
#=================================================
2019-05-09 01:13:48 +02:00
use_web_account_old=$(ynh_app_setting_get --app=$app --key=use_web_account)
2019-04-11 01:12:07 +02:00
if [ $use_web_account -eq $use_web_account_old ]
then
ynh_die "use_web_account is already set as $use_web_account." 0
fi
#=================================================
# SPECIFIC ACTION
#=================================================
# SET USER CREATION POLICY
#=================================================
if [ $use_web_account -eq 0 ]; then
web_account="Enable"
else
web_account="Disable"
fi
2019-05-09 09:03:19 +02:00
ynh_script_progression --message=--message="$web_account web user creation..." --weight=13
2019-04-11 01:12:07 +02:00
echo "ApplicationSetting.last.update_attributes(password_authentication_enabled_for_web: $use_web_account, signup_enabled: $use_web_account)" | gitlab-rails console
# Update the config of the app
2019-05-09 01:13:48 +02:00
ynh_app_setting_set --app=$app --key=use_web_account --value=$use_web_account
2019-04-11 01:12:07 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2019-05-09 09:03:19 +02:00
ynh_script_progression --message="Execution completed" --last