David
12/15/2022, 5:26 PMGenerating your osquery installer...
Windows Installer XML Toolset Toolset Harvester version
Copyright (c) .NET Foundation and contributors. All rights reserved.
=================================================================
Native Crash Reporting
=================================================================
Got a UNKNOWN while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=================================================================
wine client error:2a:
=================================================================
Managed Stacktrace:
=================================================================
=================================================================
write: Bad file descriptor
Error: package root files: heat failed: exit status 1
Another user had this issue earlier this spring and following the recommendations found here https://github.com/fleetdm/fleet/issues/5713
I tried
docker buildx build --platform=linux/amd64
but got the following error any suggestions?
ERROR: "docker buildx build" requires exactly 1 argument.
Lucas Rodriguez
12/15/2022, 5:34 PMfleetctl
version?
fleetctl --version
David
12/15/2022, 5:35 PMbranch: HEAD
revision: af0c75e08bc37d1c81f38fd24dfaf0d473d8a499
build date: 2022-11-14
build user: runner
Lucas Rodriguez
12/15/2022, 6:01 PMDavid
12/15/2022, 6:25 PMLucas Rodriguez
12/15/2022, 7:03 PMv4.25.0
. Thanks for reporting!
Second: As a workaround, given that we've seen this error is sporadic, you can run the command in a loop until it succeeds:
cat workaround.sh
#!/bin/bash
while ! fleetctl package --type=msi --enroll-secret=foobar --fleet-url=<https://localhost:8080>; do
sleep 5;
echo Retrying...
done
chmod +x workaround.sh
./workaround.sh
Sorry for the inconvenience.David
12/15/2022, 7:36 PMLucas Rodriguez
12/15/2022, 7:36 PMDavid
12/15/2022, 7:38 PMLucas Rodriguez
12/15/2022, 7:44 PMKathy Satterlee
12/15/2022, 10:01 PM