mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
Fix for the hook
This commit is contained in:
parent
7b42af1637
commit
adbe51a64e
2 changed files with 3 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
app=dolibarr
|
||||
src_path=/var/www/dolibarr
|
||||
member=1
|
||||
app=__APP__
|
||||
src_path=__SRCPATH__
|
||||
member=__MEMBER__
|
||||
|
||||
# Sync users
|
||||
if sudo php $src_path/scripts/user/sync_users_ldap2dolibarr.php commitiferror --server=localhost -y; then
|
||||
|
|
|
@ -178,8 +178,6 @@ fi
|
|||
|
||||
# Setup hooks
|
||||
fhook=../hooks/post_user_create
|
||||
ynh_replace_string --match_string="__ADMIN__" --replace_string="$admin" --target_file="$fhook"
|
||||
|
||||
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="$fhook"
|
||||
ynh_replace_string --match_string="__MEMBER__" --replace_string="$member" --target_file="$fhook"
|
||||
ynh_replace_string --match_string="__SRCPATH__" --replace_string="$src_path" --target_file="$fhook"
|
||||
|
|
Loading…
Reference in a new issue