1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wallabag2_ynh.git synced 2024-10-01 13:35:06 +02:00

Merge pull request #74 from ashemsay/testing

fix wrong user in hooks
This commit is contained in:
Kayou 2020-03-28 22:32:12 +01:00 committed by GitHub
commit ae9078c956
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 4 deletions

View file

@ -1,6 +1,7 @@
#!/bin/bash
app="wallabag2"
app="__APP__"
user="__APP__"
# Retrieve arguments
username=$1
@ -14,5 +15,5 @@ user_pass=$(ynh_string_random)
# Create the new user in Wallabag
(cd "/var/www/$app" && \
sudo sudo -u "www-data" php "bin/console" --no-interaction --env=prod \
sudo -u "$user" php "bin/console" --no-interaction --env=prod \
fos:user:create "$username" "$user_email" "$user_pass")

View file

@ -1,6 +1,7 @@
#!/bin/bash
app="wallabag2"
app="__APP__"
user="__APP__"
# Retrieve arguments
username=$1
@ -8,5 +9,5 @@ purge=$2
# Deactivate the user from Wallabg
(cd "/var/www/$app" && \
sudo sudo -u "www-data" php "bin/console" --no-interaction --env=prod \
sudo -u "$user" php "bin/console" --no-interaction --env=prod \
fos:user:deactivate "$username")

View file

@ -167,6 +167,13 @@ chmod 600 $wb_conf
chown -R $app: $final_path
chmod 755 $final_path
#=================================================
# SETUP HOOKS
#=================================================
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="../hooks/post_user_create"
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="../hooks/post_user_delete"
#=================================================
# SETUP SSOWAT
#=================================================

View file

@ -187,6 +187,13 @@ chmod 600 $wb_conf
chown -R $app: $final_path
chmod 755 $final_path
#=================================================
# SETUP HOOKS
#=================================================
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="../hooks/post_user_create"
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="../hooks/post_user_delete"
#=================================================
# SETUP SSOWAT
#=================================================