Skip to content

Commit

Permalink
Merge pull request #184 from jonasrosland/bugfix/fix-typo
Browse files Browse the repository at this point in the history
Fix for a typo in service.go
  • Loading branch information
akutz committed Dec 15, 2015
2 parents 4523fec + 6d7b6c5 commit 49c8187
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ $ export REXRAY_STORAGEDRIVERS=ec2
$ export AWS_ACCESSKEY=access_key
$ export AWS_SECRETKEY=secret_key
$ rexray service start
Starting REX-Ray...SUCESS!
Starting REX-Ray...SUCCESS!

The REX-Ray daemon is now running at PID XX. To
shutdown the daemon execute the following command:
Expand Down
2 changes: 1 addition & 1 deletion rexray/cli/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ func (c *CLI) tryToStartDaemon() {
}

pid, _ := util.ReadPidFile()
fmt.Printf("SUCESS!\n\n")
fmt.Printf("SUCCESS!\n\n")
fmt.Printf(" The REX-Ray daemon is now running at PID %d. To\n", pid)
fmt.Printf(" shutdown the daemon execute the following command:\n\n")
fmt.Printf(" sudo %s stop\n\n", thisAbsPath)
Expand Down

0 comments on commit 49c8187

Please sign in to comment.