Juan Alvarez
12/28/2020, 10:48 AMoverrides
section for all linux platforms? In example, i want to enable enable_syslog
flag for all linux boxes, from what i see i need to have a section for ubuntu, rhel, centos... isnt it?overrides
section for a platform (i,e:windows) and a flag does not exist in there, fleet will not look for it in the main section, am I right? Meaning, if I want to use overrides
for a platform i need to configure all flags in the overrides
section even if value is the same.Noah Talerman
12/28/2020, 6:00 PMfrom what i see i need to have a section for ubuntu, rhel, centos... isnt itCorrect. Hosts receive override based on the platform returned by
SELECT platform FROM os_version
fleet will not look for it in the main section, am I right?You’re right. Overrides are NOT merged with the top level configuration. The entire config in overrides take precedence over the default config. An example config file can be found here in the documentation.
Juan Alvarez
12/28/2020, 6:52 PM