main: minio --help should print regardless of root. (#1985)

Remove root check entirely.

Fixes #1964
This commit is contained in:
Harshavardhana
2016-06-26 03:03:52 -07:00
committed by Anand Babu (AB) Periasamy
parent 3d02f7471e
commit 57146fbbb8
2 changed files with 0 additions and 32 deletions

View File

@@ -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() {