mirror of
https://github.com/YunoHost-Apps/wallabag2_ynh.git
synced 2024-10-01 13:35:06 +02:00
fix wrong user in hooks
This commit is contained in:
parent
d4069165b6
commit
7bed0cfb83
2 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
app="wallabag2"
|
app="wallabag2"
|
||||||
|
user="wallabag2"
|
||||||
|
|
||||||
# Retrieve arguments
|
# Retrieve arguments
|
||||||
username=$1
|
username=$1
|
||||||
|
@ -14,5 +15,5 @@ user_pass=$(ynh_string_random)
|
||||||
|
|
||||||
# Create the new user in Wallabag
|
# Create the new user in Wallabag
|
||||||
(cd "/var/www/$app" && \
|
(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")
|
fos:user:create "$username" "$user_email" "$user_pass")
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
app="wallabag2"
|
app="wallabag2"
|
||||||
|
user="wallabag2"
|
||||||
|
|
||||||
# Retrieve arguments
|
# Retrieve arguments
|
||||||
username=$1
|
username=$1
|
||||||
|
@ -8,5 +9,5 @@ purge=$2
|
||||||
|
|
||||||
# Deactivate the user from Wallabg
|
# Deactivate the user from Wallabg
|
||||||
(cd "/var/www/$app" && \
|
(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")
|
fos:user:deactivate "$username")
|
||||||
|
|
Loading…
Add table
Reference in a new issue