pixelated / puppet-pixelated

Puppet Module to setup the Pixelated User Agent
GNU Affero General Public License v3.0
13 stars 4 forks source link

clamav does not know about AllowSupplementaryGroups #41

Closed cz8s closed 8 years ago

cz8s commented 8 years ago

leap_platform configures clamav-daemon and clamav-milter with AllowSupplementaryGroups. But clamav does not know these options and fails to start if these options are set

cz8s commented 8 years ago

I updated the config by hand on wazokazi and try. This has to be reversed once the bug is fixed

cz8s commented 8 years ago

Did a pr: https://github.com/leapcode/leap_platform/pull/106

varac commented 8 years ago

The 'AllowSupplementaryGroups' is also present in existing installations (i.e. dev/unstable) in clamd.conf. This is addressed in Debian Bug #826406 - Too abrupt removal of AllowSupplementaryGroups option in stable, so we should remove the setting manually until clamav gets updated and doesn't break anymore.

varac commented 8 years ago

Fixed: dev + unstable with

sed -i '/^AllowSupplementaryGroups.*$/d' /etc/clamav/clam*.conf; systemctl restart clamav-daemon.service clamav-milter.service