mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
18 lines
470 B
Text
18 lines
470 B
Text
|
#!/bin/bash
|
||
|
app=YNH_APP
|
||
|
src_path=/var/www/$app
|
||
|
user=YNH_USER
|
||
|
member=YNH_MEMBER
|
||
|
|
||
|
# If YNH users should be users, sync users
|
||
|
if [ $user = 1 ];
|
||
|
then
|
||
|
sudo sudo -u www-data php $src_path/scripts/user/sync_users_ldap2dolibarr.php commitiferror --server=localhost -y
|
||
|
fi
|
||
|
|
||
|
# If YNH users should be members, sync members
|
||
|
if [ $member = 1 ];
|
||
|
then
|
||
|
sudo sudo -u www-data php $src_path/scripts/members/sync_members_ldap2dolibarr.php commitiferror 1 --server=localhost -y
|
||
|
fi
|