mirror of
https://github.com/fleetdm/fleet
synced 2026-05-01 10:27:35 +00:00
## Summary Fixes the publisher name in the 1Password Windows Fleet-maintained app query to match the actual Windows registry value. ## Issue The generated query was using `AgileBits Inc.` (capital 'B') from the winget manifest, but Windows registry shows the publisher as `Agilebits Inc.` (lowercase 'b'). This caused a mismatch preventing Fleet from properly matching the installed software with the Fleet-maintained app. ## Changes - Added `program_publisher` override to `inputs/winget/1password.json` with the correct publisher name - Regenerated output manifest with corrected query ## Test plan - [x] Verify the query matches actual Windows registry value on a test host - [x] Confirm Fleet can now properly match installed 1Password software
12 lines
404 B
JSON
12 lines
404 B
JSON
{
|
|
"name": "1Password",
|
|
"slug": "1password/windows",
|
|
"package_identifier": "AgileBits.1Password",
|
|
"unique_identifier": "1Password",
|
|
"installer_arch": "x64",
|
|
"installer_type": "msi",
|
|
"installer_scope": "machine",
|
|
"default_categories": ["Productivity"],
|
|
"uninstall_script_path": "ee/maintained-apps/inputs/winget/scripts/1password_uninstall.ps1",
|
|
"program_publisher": "Agilebits Inc."
|
|
}
|