cloudblocks 0.0.13 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/cb-agent +2 -2
- metadata +1 -1
data/bin/cb-agent
CHANGED
|
@@ -442,10 +442,10 @@ if command.nil? || command.empty?
|
|
|
442
442
|
pid = get_pid
|
|
443
443
|
#check if the process is actually running
|
|
444
444
|
if pid != 0 && pid_process_running?(pid)
|
|
445
|
-
puts "The CloudBlocks Agent is currently running. Use
|
|
445
|
+
puts "The CloudBlocks Agent is currently running. Use 'cb-agent stop' to stop it or --help for more info"
|
|
446
446
|
exit -1
|
|
447
447
|
end
|
|
448
|
-
puts
|
|
448
|
+
puts "The CloudBlocks Agent is not currently running. Use 'cb-agent start' to start it or --help for more information"
|
|
449
449
|
exit -1
|
|
450
450
|
end
|
|
451
451
|
|