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
Icinga does not start on Ubuntu when installed via Puppet due to the wrong permissions of /etc/icinga2. Fix should be easy.
either
file { $conf_dir:
ensure => directory,
owner => $user,
group => $group,
}
or remove the file resource completely as the dir will be created by the package with correct permissions anyway.
to protect for wrong permissions set by default resource for file.
The text was updated successfully, but these errors were encountered: