Skip to content

Commit 60c680f

Browse files
author
Marius Burkard
committed
Merge branch '6089-update-php-removes-_rspamd-from-redis-group' into 'develop'
Resolve "update.php removes _rspamd from redis group" Closes #6089 See merge request ispconfig/ispconfig3!1427
2 parents c129ac0 + cc84366 commit 60c680f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install/lib/installer_base.lib.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1793,9 +1793,9 @@ public function configure_rspamd() {
17931793
}
17941794

17951795
if(is_user('_rspamd') && is_group('amavis')) {
1796-
exec("usermod -G amavis _rspamd");
1796+
exec("usermod -a -G amavis _rspamd");
17971797
} elseif(is_user('rspamd') && is_group('amavis')) {
1798-
exec("usermod -G amavis rspamd");
1798+
exec("usermod -a -G amavis rspamd");
17991799
}
18001800

18011801
if(!is_dir('/etc/rspamd/local.d/')){

0 commit comments

Comments
 (0)