Search code examples
bashloggingrundeck

How to disable Time log when running job in Rundeck?


I tried to run some command lines in Rundeck, but it just logs the time every second, now the log is all over the place. How to disable this?

log

Below is my simple command line

commandline


Solution

  • That is a script-related problem (curl / wget command I guess), you can make curl silent using the -s parameter, something like curl -s http://myhost.net. Same on wget with the -q parameter: wget -q myhost.net.