File 0015-Fix-vagrant_plugin_sdk-plugin.proto-imports.patch of Package vagrant
From 78032b7d76c0f3cd20c186f27b5f2a41bd701763 Mon Sep 17 00:00:00 2001
From: ila <ila.embsys@gmail.com>
Date: Fri, 21 Feb 2025 23:12:44 +0000
Subject: [PATCH 1/1] Fix `vagrant_plugin_sdk/plugin.proto` imports
---
internal/server/proto/ruby_vagrant/ruby-server.proto | 2 +-
internal/server/proto/vagrant_server/server.proto | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/internal/server/proto/ruby_vagrant/ruby-server.proto b/internal/server/proto/ruby_vagrant/ruby-server.proto
index 886042c02..5a514cb9c 100644
--- a/internal/server/proto/ruby_vagrant/ruby-server.proto
+++ b/internal/server/proto/ruby_vagrant/ruby-server.proto
@@ -11,7 +11,7 @@ import "google/protobuf/empty.proto";
import "google/protobuf/any.proto";
import "google/rpc/error_details.proto";
-import "plugin.proto";
+import "vagrant_plugin_sdk/plugin.proto";
// The service that is implemented for the server backend.
service RubyVagrant {
diff --git a/internal/server/proto/vagrant_server/server.proto b/internal/server/proto/vagrant_server/server.proto
index 353ac6352..d3d700294 100644
--- a/internal/server/proto/vagrant_server/server.proto
+++ b/internal/server/proto/vagrant_server/server.proto
@@ -14,7 +14,7 @@ import "google/rpc/status.proto";
import "google/protobuf/struct.proto";
import "protostructure.proto";
-import "plugin.proto";
+import "vagrant_plugin_sdk/plugin.proto";
// The service that is implemented for the server backend.
service Vagrant {
--
2.48.1