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
applying packs: POST /api/latest/fleet/spec/packs received status 400 Bad request: pack payload verification: pack scheduled query interval must be an integer greater than 1 and less than 604800
The reason for this error are several lines in the above mentioned file that say: interval: 0.
Changing the affected lines using something like sed -i 's/interval: 0/interval: 28800/g' ./osquery-configuration/Fleet/Endpoints/Windows/osquery.yaml
solves the issue.
Both FleetDM server and fleetctl are version 4.32.0.
The text was updated successfully, but these errors were encountered:
I tried to apply the config from
osquery-configuration/Fleet/Endpoints/Windows/osquery.yaml
usingfleetctl
like so:... and got the following error:
The reason for this error are several lines in the above mentioned file that say:
interval: 0
.Changing the affected lines using something like
sed -i 's/interval: 0/interval: 28800/g' ./osquery-configuration/Fleet/Endpoints/Windows/osquery.yaml
solves the issue.
Both FleetDM server and
fleetctl
are version 4.32.0.The text was updated successfully, but these errors were encountered: