aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/app/start.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/internal/app/start.go b/internal/app/start.go
index 91864510..1ebc94f8 100644
--- a/internal/app/start.go
+++ b/internal/app/start.go
@@ -4,7 +4,6 @@ import (
"errors"
"fmt"
"os/exec"
- "path"
"path/filepath"
"strings"
@@ -46,7 +45,6 @@ func (a *app) Start() error {
uint32(a.seal.sys.UID()),
a.seal.sys.user.as,
a.seal.sys.user.supp,
- path.Join(a.seal.share, "shim"),
&shim0.Payload{
Argv: a.seal.command,
Exec: shimExec,
@@ -252,12 +250,6 @@ func (a *app) Wait() (int, error) {
}
}
- if a.shim.Unwrap() == nil {
- fmsg.VPrintln("fault before shim start")
- } else {
- a.shim.AbortWait(errors.New("shim exited"))
- }
-
if a.seal.sys.needRevert {
if err := a.seal.sys.Revert(ec); err != nil {
return err.(RevertCompoundError)