diff options
| author | unitexe <unitexe70@gmail.com> | 2025-07-06 10:34:10 -0500 |
|---|---|---|
| committer | unitexe <unitexe70@gmail.com> | 2025-07-06 10:34:10 -0500 |
| commit | eeaaa380eb33edf706886c42ba3443e7b0fa379d (patch) | |
| tree | d9a4c3ebf2384050e2578cf9533348f129ad60e0 /proto | |
| parent | f3352ee6f39822318649b9d268c80b7434d7757e (diff) | |
Add endpoint to manually start podman-auto-update systemd unit
Diffstat (limited to 'proto')
| -rw-r--r-- | proto/ormos.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/proto/ormos.proto b/proto/ormos.proto index 700bd70..bd759dd 100644 --- a/proto/ormos.proto +++ b/proto/ormos.proto @@ -10,6 +10,8 @@ service Ormos { rpc ListImageArchives (ListImageArchivesRequest) returns (ListImageArchivesResponse) {} rpc LoadImageArchive (LoadImageArchiveRequest) returns (LoadImageArchiveResponse) {} rpc InspectImageArchive (InspectImageArchiveRequest) returns (InspectImageArchiveResponse) {} + + rpc DoPodmanAutoUpdate (DoPodmanAutoUpdateRequest) returns (DoPodmanAutoUpdateResponse) {} } message MountUsbDeviceRequest { @@ -77,3 +79,9 @@ message InspectImageArchiveResponse { string stdout = 2; string stderr = 3; } + +message DoPodmanAutoUpdateRequest {} + +message DoPodmanAutoUpdateResponse { + bool is_success = 1; +} |
