diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-03-13 21:57:54 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-03-13 21:57:54 +0900 |
| commit | 4133b555ba8dd38accb272d86c01898ac4b99f95 (patch) | |
| tree | eb759ced154d8e35dd8ea85e4c58f027488ba793 /internal/app/shim | |
| parent | 9b1a60b5c9f7a92abb632639117d61c5cbaf74f7 (diff) | |
internal/app: rename init to init0
This makes way for the new container init.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/shim')
| -rw-r--r-- | internal/app/shim/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/app/shim/main.go b/internal/app/shim/main.go index ed1cb980..360c89b7 100644 --- a/internal/app/shim/main.go +++ b/internal/app/shim/main.go @@ -16,7 +16,7 @@ import ( "git.gensokyo.uk/security/fortify/helper/proc" "git.gensokyo.uk/security/fortify/helper/seccomp" "git.gensokyo.uk/security/fortify/internal" - init0 "git.gensokyo.uk/security/fortify/internal/app/init" + "git.gensokyo.uk/security/fortify/internal/app/init0" "git.gensokyo.uk/security/fortify/internal/fmsg" ) @@ -125,7 +125,7 @@ func Main() { seccomp.CPrintln = log.Println } if b, err := helper.NewBwrap( - conf, path.Join(fst.Tmp, "sbin/init"), false, + conf, path.Join(fst.Tmp, "sbin/init0"), false, nil, func(int, int) []string { return make([]string, 0) }, extraFiles, syncFd, |
