Skip to content

Commit

Permalink
Merge branch 'release/0.8.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
takama committed Mar 10, 2017
2 parents 3bf6e76 + 54c1710 commit 59883a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.

/*
Package daemon 0.8.4 for use with Go (golang) services.
Package daemon 0.8.5 for use with Go (golang) services.
Package daemon provides primitives for daemonization of golang services.
This package is not provide implementation of user daemon,
Expand Down
4 changes: 2 additions & 2 deletions helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var (
// ErrUnsupportedSystem appears if try to use service on system which is not supported by this release
ErrUnsupportedSystem = errors.New("Unsupported system")

// ErrRootPriveleges appears if run installation or deleting the service without root priveleges
// ErrRootPriveleges appears if run installation or deleting the service without root privileges
ErrRootPriveleges = errors.New("You must have root user privileges. Possibly using 'sudo' command should help")

// ErrAlreadyInstalled appears if service already installed on the system
Expand All @@ -31,7 +31,7 @@ var (
// ErrNotInstalled appears if try to delete service which was not been installed
ErrNotInstalled = errors.New("Service is not installed")

// ErrAlreadyStopped appears if try to start already running service
// ErrAlreadyRunning appears if try to start already running service
ErrAlreadyRunning = errors.New("Service is already running")

// ErrAlreadyStopped appears if try to stop already stopped service
Expand Down

0 comments on commit 59883a8

Please sign in to comment.