github.com/fawick/restic@v0.1.1-0.20171126184616-c02923fbfc79/cmd/restic/background.go (about) 1 // +build !linux 2 3 package main 4 5 // IsProcessBackground should return true if it is running in the background or false if not 6 func IsProcessBackground() bool { 7 //TODO: Check if the process are running in the background in other OS than linux 8 return false 9 }