mirror of
https://github.com/minio/minio.git
synced 2024-12-24 06:05:55 -05:00
main: minio --help should print regardless of root. (#1985)
Remove root check entirely. Fixes #1964
This commit is contained in:
parent
3d02f7471e
commit
57146fbbb8
6
main.go
6
main.go
@ -64,12 +64,6 @@ func init() {
|
||||
|
||||
// Set global trace flag.
|
||||
globalTrace = os.Getenv("MINIO_TRACE") == "1"
|
||||
|
||||
// It is an unsafe practice to run network services as
|
||||
// root. Containers are an exception.
|
||||
if !isContainerized() && os.Geteuid() == 0 {
|
||||
console.Fatalln("Please run ‘minio’ as a non-root user.")
|
||||
}
|
||||
}
|
||||
|
||||
func migrate() {
|
||||
|
@ -18,38 +18,12 @@ package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"runtime"
|
||||
"strings"
|
||||
|
||||
"github.com/hashicorp/go-version"
|
||||
"github.com/minio/mc/pkg/console"
|
||||
)
|
||||
|
||||
// isContainerized returns true if we are inside a containerized environment.
|
||||
func isContainerized() bool {
|
||||
// Docker containers contain ".dockerenv" at their root path.
|
||||
if _, e := os.Stat("/.dockerenv"); e == nil {
|
||||
return true
|
||||
}
|
||||
|
||||
// Check if cgroup policies for init process contains docker string.
|
||||
if cgroupData, e := ioutil.ReadFile("/proc/1/cgroup"); e == nil {
|
||||
if strings.Contains(string(cgroupData), "/docker-") {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
// Check if env var explicitly set
|
||||
if allow := os.Getenv("ALLOW_CONTAINER_ROOT"); allow == "1" || strings.ToLower(allow) == "true" {
|
||||
return true
|
||||
}
|
||||
|
||||
/* Add checks for non-docker containers here. */
|
||||
return false
|
||||
}
|
||||
|
||||
// check if minimum Go version is met.
|
||||
func checkGoVersion() {
|
||||
// Current version.
|
||||
|
Loading…
Reference in New Issue
Block a user