From 379aa9e6f742daca8d58c3bc1661cdfd170fe2fb Mon Sep 17 00:00:00 2001 From: Roberto Dip Date: Mon, 5 Aug 2024 18:14:12 -0300 Subject: [PATCH] add Escrow Buddy to TUF.md after the push to `stable` (#21066) --- orbit/TUF.md | 2 ++ tools/tuf/status/tuf-status.go | 7 +++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/orbit/TUF.md b/orbit/TUF.md index 53be1e46e8..634ee62b5d 100644 --- a/orbit/TUF.md +++ b/orbit/TUF.md @@ -12,6 +12,7 @@ Following are the currently deployed versions of fleetd components on the `stabl | osqueryd | 5.12.1 | 5.12.1 | 5.12.1 | 5.12.1 | | nudge | 1.1.10.81462 | - | - | - | | swiftDialog | 2.1.0 | - | - | - | +| escrowBuddy | 1.0.0 | - | - | - | ## `edge` @@ -22,3 +23,4 @@ Following are the currently deployed versions of fleetd components on the `stabl | osqueryd | 5.13.0 | 5.13.0 | 5.13.0 | 5.13.0 | | nudge | - | - | - | - | | swiftDialog | - | - | - | - | +| escrowBuddy | - | - | - | - | diff --git a/tools/tuf/status/tuf-status.go b/tools/tuf/status/tuf-status.go index 6f8aa6fd36..e62dc14f12 100644 --- a/tools/tuf/status/tuf-status.go +++ b/tools/tuf/status/tuf-status.go @@ -186,6 +186,9 @@ func channelVersionCommand() *cli.Command { "swiftDialog": { "macos": "swiftDialog.app.tar.gz", }, + "escrowBuddy": { + "macos": "escrowBuddy.pkg", + }, } var ( channel string @@ -208,7 +211,7 @@ func channelVersionCommand() *cli.Command { &cli.StringSliceFlag{ Name: "components", EnvVars: []string{"TUF_STATUS_COMPONENTS"}, - Value: cli.NewStringSlice("orbit", "desktop", "osqueryd", "nudge", "swiftDialog"), + Value: cli.NewStringSlice("orbit", "desktop", "osqueryd", "nudge", "swiftDialog", "escrowBuddy"), Destination: &components, Usage: "List of components", }, @@ -324,7 +327,7 @@ func channelVersionCommand() *cli.Command { Right: true, }) var rows [][]string - componentsInOrder := []string{"orbit", "desktop", "osqueryd", "nudge", "swiftDialog"} + componentsInOrder := []string{"orbit", "desktop", "osqueryd", "nudge", "swiftDialog", "escrowBuddy"} setIfEmpty := func(m map[string]string, k string) string { v := m[k] if v == "" {