mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 08:28:52 +00:00
* Fix ingestion of MDM server for macOS and Windows hosts * Return early if there are no mobile_device_management_solutions to clean up * Run make dump-test-schema * Fix TestHosts/DeleteHosts test * Add test for host unenrolling from MDM * Fix lint * Fix typo * Identify Fleet MDM * Move logic to deduce MDM name out of Datastore * Run make dump-test-schema * Remove printfs from migration
5 lines
166 B
Bash
Executable file
5 lines
166 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
docker run --rm -i --network fleet_default mysql:5.7 bash -c 'gzip -dc - | mysql -hmysql -uroot -ptoor fleet' < backup.sql.gz
|
|
|