diff options
| author | yalh76 <yalh@yahoo.com> | 2020-05-19 01:31:51 +0200 |
|---|---|---|
| committer | yalh76 <yalh@yahoo.com> | 2020-05-19 01:31:51 +0200 |
| commit | ff8fbd3fd06a0a87272e751bf3011d730dbfffc0 (patch) | |
| tree | 1ef77d269c5b28ed3323047bd07a8cd98edd4ca8 | |
| parent | b5556ae674f1ca35da8f5e1d5a8a8ce4e69bc580 (diff) | |
| download | mastodon_ynh-ff8fbd3fd06a0a87272e751bf3011d730dbfffc0.tar.gz mastodon_ynh-ff8fbd3fd06a0a87272e751bf3011d730dbfffc0.tar.bz2 mastodon_ynh-ff8fbd3fd06a0a87272e751bf3011d730dbfffc0.zip | |
disable registrations and invitations
| -rw-r--r-- | scripts/install | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/install b/scripts/install index ab3aaa9..c5e5775 100644 --- a/scripts/install +++ b/scripts/install @@ -188,6 +188,9 @@ otp_secret=$(head -n128 /dev/urandom | tail -n +1 | tr -dc -d 'a-z0-9' | head -c ynh_replace_string --match_string="__OTP_SECRET__" --replace_string="$otp_secret" --target_file="$config" ynh_app_setting_set --app="$app" --key=otp_secret --value="$otp_secret" +ynh_replace_string --match_string="registrations_mode: 'open'" --replace_string="registrations_mode: 'none'" --target_file="$final_path/live/config/settings.yml" +ynh_replace_string --match_string="min_invite_role: 'admin'" --replace_string="min_invite_role: 'none'" --target_file="$final_path/live/config/settings.yml" + #================================================= # INSTALLING MASTODON #================================================= |
