mirror of
https://github.com/calmh/service.git
synced 2026-07-17 01:35:02 +00:00
Run go programs as a service on major platforms.
- Go 98%
- Makefile 1.2%
- Shell 0.5%
- Dockerfile 0.3%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| example | ||
| linux_test | ||
| .gitignore | ||
| .travis.yml | ||
| appveyor.yml | ||
| console.go | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| linux-test-su.sh | ||
| name_test.go | ||
| README.md | ||
| service.go | ||
| service_darwin.go | ||
| service_go1.8.go | ||
| service_linux.go | ||
| service_nosu_test.go | ||
| service_su_test.go | ||
| service_systemd_linux.go | ||
| service_sysv_linux.go | ||
| service_test.go | ||
| service_unix.go | ||
| service_upstart_linux.go | ||
| service_windows.go | ||
| service_windows_test.go | ||
| servicetest_unix_test.go | ||
| servicetest_windows_test.go | ||
| version.go | ||
| version_test.go | ||
service 
service will install / un-install, start / stop, and run a program as a service (daemon). Currently supports Windows XP+, Linux/(systemd | Upstart | SysV), and OSX/Launchd.
Windows controls services by setting up callbacks that is non-trivial. This is very different then other systems. This package provides the same API despite the substantial differences. It also can be used to detect how a program is called, from an interactive terminal or from a service manager.
BUGS
- Dependencies field is not implemented for Linux systems and Launchd.
- OS X when running as a UserService Interactive will not be accurate.