Skip to content

Commit da2717f

Browse files
committed
remove 'release' field.
1 parent 8205d8e commit da2717f

2 files changed

Lines changed: 54 additions & 60 deletions

File tree

‎software_bundle/software_bundle.pb.go‎

Lines changed: 41 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎software_bundle/software_bundle.proto‎

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -107,39 +107,42 @@ message ListSoftwareBundlesResponse{
107107
message SoftwareBundle {
108108
// name of the software bundle
109109
string software_bundle_name = 1;
110+
// arbitrarily-formatted version string for the software bundle.
111+
// This version would be extracted from the software bundle itself,
112+
// as a way for vendors to identify extensions.
113+
// (since the software_bundle_name is provided by the client).
110114
string version = 2;
111-
string release = 3;
112-
string description = 4;
113-
InstallStatus install_status = 6;
115+
string description = 3;
116+
InstallStatus install_status = 4;
114117

115118
// If persistent is true, then the system will ensure
116119
// that this software bundle is applied on startup
117120
// if system reboots (e.g. via the System.Reboot RPC).
118121
// If persistent is false then the system will not
119122
// re-apply this software bundle after startup.
120-
bool persistent = 7;
123+
bool persistent = 5;
121124

122125
// bool indicating if this software bundle has a valid signature
123-
bool signature_valid = 8;
126+
bool signature_valid = 6;
124127

125128
// available is true if the software bundle file is still available
126129
// on the system.
127130
// the software bundle may be installed but no longer available
128131
// if the software bundle file has been removed.
129-
bool available = 9;
132+
bool available = 7;
130133

131134
// any errors attached to this software bundle
132-
string errors = 10;
133-
repeated Package packages = 11;
135+
string errors = 8;
136+
repeated Package packages = 9;
134137

135138
// affected_services is a list of the services which can be affected by this
136139
// software bundle. This is static information
137-
repeated string affected_services = 12;
140+
repeated string affected_services = 10;
138141

139142
// services_to_restart is a list of the services which are pending a reload
140143
// to be finalized.
141144
// This list will be cleared after a FinalizeSoftwareBundles RPC executes.
142-
repeated string services_to_restart = 13;
145+
repeated string services_to_restart = 11;
143146
}
144147
repeated SoftwareBundle software_bundles = 1;
145148
}

0 commit comments

Comments
 (0)