You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are specific cases where clamd needs to run as root. Setting default['clamav']['user'] = 'root' to get the desired results ends up locking out the root account because of this code in recipes/users.rb:
user node['clamav']['user'] do
comment 'Clam Anti Virus Checker'
system true
shell '/sbin/nologin'
end
Please at least consider a guard of not_if { node['clamav']['user'] == 'root' }
The text was updated successfully, but these errors were encountered:
There are specific cases where
clamd
needs to run asroot
. Settingdefault['clamav']['user'] = 'root'
to get the desired results ends up locking out the root account because of this code inrecipes/users.rb
:Please at least consider a guard of
not_if { node['clamav']['user'] == 'root' }
The text was updated successfully, but these errors were encountered: