diff options
| author | nemsia <nemsia@nemsia.org> | 2017-05-07 23:21:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-07 23:21:52 +0200 |
| commit | 8584df0b547189dd86d34e4b0bbf342814524352 (patch) | |
| tree | 7886531a5f036eceb5fdc847078fd296a4f35e67 /scripts/.fonctions | |
| parent | a4a3f5cce430684b26e81613dffc3b88a1c12a95 (diff) | |
| parent | f12507fbf0e8fd46346d8c25d64796df58acf37b (diff) | |
| download | mastodon_ynh-8584df0b547189dd86d34e4b0bbf342814524352.tar.gz mastodon_ynh-8584df0b547189dd86d34e4b0bbf342814524352.tar.bz2 mastodon_ynh-8584df0b547189dd86d34e4b0bbf342814524352.zip | |
Merge branch 'master' into master
Diffstat (limited to 'scripts/.fonctions')
| -rw-r--r-- | scripts/.fonctions | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/.fonctions b/scripts/.fonctions index 064a0c9..20f9ea0 100644 --- a/scripts/.fonctions +++ b/scripts/.fonctions @@ -110,6 +110,13 @@ SETUP_SOURCE () { # Download source, decompress and copu into $final_path fi } +# Create user with special hack +CREATE_USER () { + sudo curl -kSs https://${domain}/auth/sign_up --cookie-jar cookie | grep csrf > token || true + token=$(sudo cat token | sed -n '/csrf-token/s/.*name="csrf-token"\s\+content="\([^"]\+\).*/\1/p') + sudo curl -kSs https://${domain}/auth --data "&user[account_attributes][username]=${admin_mastodon}&user[email]=${admin_mastodon}@${domain}&user[password]=${admin_pass}&user[password_confirmation]=${admin_pass}&authenticity_token=${token}" --cookie cookie +} + ### REMOVE SCRIPT REMOVE_NGINX_CONF () { # Delete nginx configuration |
