File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
// license that can be found in the LICENSE file.
4
4
5
5
/*
6
- Package daemon 0.8.4 for use with Go (golang) services.
6
+ Package daemon 0.8.5 for use with Go (golang) services.
7
7
8
8
Package daemon provides primitives for daemonization of golang services.
9
9
This package is not provide implementation of user daemon,
Original file line number Diff line number Diff line change 22
22
// ErrUnsupportedSystem appears if try to use service on system which is not supported by this release
23
23
ErrUnsupportedSystem = errors .New ("Unsupported system" )
24
24
25
- // ErrRootPriveleges appears if run installation or deleting the service without root priveleges
25
+ // ErrRootPriveleges appears if run installation or deleting the service without root privileges
26
26
ErrRootPriveleges = errors .New ("You must have root user privileges. Possibly using 'sudo' command should help" )
27
27
28
28
// ErrAlreadyInstalled appears if service already installed on the system
31
31
// ErrNotInstalled appears if try to delete service which was not been installed
32
32
ErrNotInstalled = errors .New ("Service is not installed" )
33
33
34
- // ErrAlreadyStopped appears if try to start already running service
34
+ // ErrAlreadyRunning appears if try to start already running service
35
35
ErrAlreadyRunning = errors .New ("Service is already running" )
36
36
37
37
// ErrAlreadyStopped appears if try to stop already stopped service
You can’t perform that action at this time.
0 commit comments