mirror of
https://github.com/YunoHost-Apps/synapse_ynh.git
synced 2024-09-03 20:26:38 +02:00
chg: fix user in update_synapse_for_appservice.sh
Since the migration to the packaging v2 in https://github.com/YunoHost-Apps/synapse_ynh/pull/426 the system user for this app is $app and not matrix-$app anymore.
This commit is contained in:
parent
62a94a7da9
commit
77aca763d6
1 changed files with 2 additions and 2 deletions
|
@ -18,8 +18,8 @@ for f in $(ls /etc/matrix-$app/app-service/); do
|
||||||
done
|
done
|
||||||
|
|
||||||
# Set permissions
|
# Set permissions
|
||||||
chown matrix-$app $service_config_file
|
chown $app $service_config_file
|
||||||
chown matrix-$app /etc/matrix-$app/app-service/*
|
chown $app /etc/matrix-$app/app-service/*
|
||||||
chmod 600 $service_config_file
|
chmod 600 $service_config_file
|
||||||
chmod 600 /etc/matrix-$app/app-service/*
|
chmod 600 /etc/matrix-$app/app-service/*
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue