aboutsummaryrefslogtreecommitdiff
path: root/exec2
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-11-28 17:15:12 +0100
committerAlex Auvolat <alex@adnab.me>2022-11-28 17:15:12 +0100
commitbf3165a7069fc6dcf9ae3a28be3af07fe8b4e1c2 (patch)
tree32f52eeb5d60ae33e8a40c2d8b26d70cac19a473 /exec2
parent63e31b9ed97f34f4ea709f505c37f5e8968a0f36 (diff)
downloadnomad-driver-nix2-bf3165a7069fc6dcf9ae3a28be3af07fe8b4e1c2.tar.gz
nomad-driver-nix2-bf3165a7069fc6dcf9ae3a28be3af07fe8b4e1c2.zip
Vendor executor module so that we can patch it
Diffstat (limited to 'exec2')
-rw-r--r--exec2/driver.go2
-rw-r--r--exec2/handle.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/exec2/driver.go b/exec2/driver.go
index 827d351..3624c7c 100644
--- a/exec2/driver.go
+++ b/exec2/driver.go
@@ -13,7 +13,7 @@ import (
"github.com/hashicorp/nomad/client/lib/cgutil"
"github.com/hashicorp/nomad/drivers/shared/capabilities"
"github.com/hashicorp/nomad/drivers/shared/eventer"
- "github.com/hashicorp/nomad/drivers/shared/executor"
+ "github.com/Alexis211/nomad-driver-exec2/executor"
"github.com/hashicorp/nomad/drivers/shared/resolvconf"
"github.com/hashicorp/nomad/helper/pluginutils/hclutils"
"github.com/hashicorp/nomad/helper/pluginutils/loader"
diff --git a/exec2/handle.go b/exec2/handle.go
index b4d55a2..9cd1cc3 100644
--- a/exec2/handle.go
+++ b/exec2/handle.go
@@ -7,7 +7,7 @@ import (
"time"
hclog "github.com/hashicorp/go-hclog"
- "github.com/hashicorp/nomad/drivers/shared/executor"
+ "github.com/Alexis211/nomad-driver-exec2/executor"
"github.com/hashicorp/nomad/plugins/drivers"
)