aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/proc/priv/init/early.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-02-08 13:03:45 +0900
committerOphestra <cat@gensokyo.uk>2025-02-08 13:03:45 +0900
commite14923ae530dda0601c204fe17ac1956f54a45b0 (patch)
tree1578bbc4c08d9afc94c4b009cd2bf64260574f05 /internal/proc/priv/init/early.go
parent7aff3ead3afaa7461e0054fbef23fb571b4add0a (diff)
helper/proc: move package out of internal
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/proc/priv/init/early.go')
-rw-r--r--internal/proc/priv/init/early.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/internal/proc/priv/init/early.go b/internal/proc/priv/init/early.go
deleted file mode 100644
index cc1c2f7e..00000000
--- a/internal/proc/priv/init/early.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package init0
-
-import (
- "os"
- "path"
-
- "git.gensokyo.uk/security/fortify/internal/fmsg"
-)
-
-// used by the parent process
-
-// TryArgv0 calls [Main] if argv0 indicates the process is started from a file named "init".
-func TryArgv0() {
- if len(os.Args) > 0 && path.Base(os.Args[0]) == "init" {
- Main()
- fmsg.Exit(0)
- }
-}