Removed extra printed `\n` (#8324)
* Removed extra printed `\n` When running the installation script, a lot of `\n` got printed before the return status `[OK]` or `[ERROR]`. * Update md5sum of packaging/installer/kickstart.sh in packaging/installer/methods/kickstart.md Co-authored-by: James Mills <prologic@shortcircuit.net.au>
Jonathan Barda committed
Mar 6, 2020 at 04:31 UTC
6f887ee0a82b1afb90f4e895dff75b13d54ef3c8
2 files changed
+2
-2
packaging/installer/kickstart.sh
+1
-1
@@ -109,7 +109,7 @@ run() {
109
110
printf >&2 "${info_console}${TPUT_BOLD}${TPUT_YELLOW}"
111
escaped_print >&2 "${@}"
112
- printf >&2 "${TPUT_RESET}\n"
112
+ printf >&2 "${TPUT_RESET}"
113
114
"${@}"
115
packaging/installer/methods/kickstart.md
+1
-1
@@ -51,7 +51,7 @@ To use `md5sum` to verify the intregity of the `kickstart.sh` script you will do
51
run the following:
52
53
```bash
54
-[ "952da7868b2c6b8819a7c600047400f5" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
54
+[ "3058dbf398ba0d73d02c7626545610f5" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
55
```
56
57
If the script is valid, this command will return `OK, VALID`.