commands/user_mode_warning.go (41 lines of code) (raw):

package commands import ( "os" "runtime" "github.com/sirupsen/logrus" ) func userModeWarning(withRun bool) { logrus.WithFields(logrus.Fields{ "GOOS": runtime.GOOS, "uid": os.Getuid(), }).Debugln("Checking runtime mode") // everything is supported on windows if runtime.GOOS == osTypeWindows { return } systemMode := os.Getuid() == 0 // We support services on Linux, Windows and Darwin noServices := runtime.GOOS != osTypeLinux && runtime.GOOS != osTypeDarwin // We don't support services installed as an User on Linux noUserService := !systemMode && runtime.GOOS == osTypeLinux if systemMode { logrus.Infoln("Running in system-mode.") } else { logrus.Warningln("Running in user-mode.") } if withRun { if noServices { logrus.Warningln("You need to manually start builds processing:") logrus.Warningln("$ gitlab-runner run") } else if noUserService { logrus.Warningln("The user-mode requires you to manually start builds processing:") logrus.Warningln("$ gitlab-runner run") } } if !systemMode { logrus.Warningln("Use sudo for system-mode:") logrus.Warningln("$ sudo gitlab-runner...") } logrus.Infoln("") }