use os.Getpid() != 1 to detect and warn about manual launch

master
brl 10 years ago
parent d8fd556219
commit 539bed1768

@ -69,14 +69,11 @@ func parseArgs() *initState {
log.Error("oz-init must run as root\n")
os.Exit(1)
}
// We should check that the file contains config.InitPath, but
// since proc is not mounted in this state is still doesn't exist.
/*
if _, err := os.Stat("/proc/1/cmdline"); !os.IsNotExist(err) {
log.Error("What are you doing? Oz-init cannot be launched manually")
if os.Getpid() != 1 {
log.Error("oz-init must be launched in new pid namespace.")
os.Exit(1)
}
*/
getvar := func(name string) string {
val := os.Getenv(name)

Loading…
Cancel
Save