Checkmk / checkmk-docs

Checkmk user manual
https://docs.checkmk.com
29 stars 130 forks source link

Fixed wget parameter #40

Closed mrclschstr closed 2 years ago

mrclschstr commented 2 years ago

wget needs "-O" (big o) as a parameter to redirect the output to a specific file. Using "-o" (small o) just redirects the program output of wget, which is not what we want in this case. See: https://linux.die.net/man/1/wget

thomaskoslowski commented 2 years ago

Perfect - finding and explanation. Thanks a lot!