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
On Linux systems where rsyslog is installed but not enabled, the installation fails.
During the installation, these recipes are conditionally included:
include_recipe 'al_agents::selinux' if selinux_enabled?
include_recipe 'al_agents::rsyslog' if rsyslog_detected?
include_recipe 'al_agents::syslog_ng' if syslogng_detected?
The rsyslog_detected helper function only detects whether rsyslog is installed, not whether it is enabled. So the corresponding recipe is runs to configure for rsyslog and restart the service (which fails). It then never gets to the syslog_ng check/installation.
The text was updated successfully, but these errors were encountered:
On Linux systems where rsyslog is installed but not enabled, the installation fails.
During the installation, these recipes are conditionally included:
The
rsyslog_detected
helper function only detects whether rsyslog is installed, not whether it is enabled. So the corresponding recipe is runs to configure for rsyslog and restart the service (which fails). It then never gets to the syslog_ng check/installation.The text was updated successfully, but these errors were encountered: