diff options
-rwxr-xr-x | bin/webcheck_url.sh | 4 | ||||
-rw-r--r-- | job-cfg/webcheck.yaml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/webcheck_url.sh b/bin/webcheck_url.sh index 2652f5b0..5f61fee9 100755 --- a/bin/webcheck_url.sh +++ b/bin/webcheck_url.sh @@ -16,8 +16,8 @@ set -e export LANG=C export http_proxy="http://localhost:3128" -PARAMS="" +PARAMS="-c -f" if [ "$2" != "" ] ; then - PARAMS=$(for i in $2 ; do echo -n "-y $i " ; done) + PARAMS=$(for i in $2 ; do echo -n " -y $i" ; done) fi webcheck $1 $PARAMS diff --git a/job-cfg/webcheck.yaml b/job-cfg/webcheck.yaml index 34bebfa8..e9125a0b 100644 --- a/job-cfg/webcheck.yaml +++ b/job-cfg/webcheck.yaml @@ -8,7 +8,7 @@ artifactDaysToKeep: -1 artifactNumToKeep: -1 triggers: - - timed: {timed} + - timed: "{timed}" builders: - shell: '/srv/jenkins/bin/webcheck_url.sh {webcheck_url} {webcheck_ignore_patterns}' publishers: |