Reorg kickstart guide's steps (#16534)
Signed-off-by: Tasos Katsoulas <tasos@netdata.cloud>
Tasos Katsoulas committed
Dec 5, 2023 at 13:23 UTC
981a998b9bdb15aecfdee5555ccba590a09eabaf
1 file changed
+14
-10
packaging/installer/methods/kickstart.md
+14
-10
@@ -24,6 +24,20 @@ This script works on all Linux distributions and macOS environments, by detectin
24
If you are installing on macOS, make sure to check the [install documentation for macOS](https://github.com/netdata/netdata/blob/master/packaging/installer/methods/macos.md) before continuing.
25
26
27
+## Verify script integrity
28
+
29
+To use `md5sum` to verify the integrity of the `kickstart.sh` script you will download using the one-line command above,
30
+run the following:
31
+
32
+```bash
33
+[ "<checksum-will-be-added-in-documentation-processing>" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
34
+```
35
+
36
+If the script is valid, this command will return `OK, VALID`.
37
+
38
+
39
+## Installation
40
+
41
> :bulb: Tip
42
>
43
> If you are unsure whether you want nightly or stable releases, read the [installation guide](https://github.com/netdata/netdata/blob/master/packaging/installer/README.md#nightly-vs-stable-releases).
@@ -48,16 +62,6 @@ To install Netdata, run the following as your normal user:
62
> If you plan to also connect the node to Netdata Cloud, make sure to replace `YOUR_CLAIM_TOKEN` with the claim token of your space,
63
> and `YOUR_ROOM_ID` with the ID of the room you are willing to connect the node to.
64
51
-## Verify script integrity
52
-
53
-To use `md5sum` to verify the integrity of the `kickstart.sh` script you will download using the one-line command above,
54
-run the following:
55
-
56
-```bash
57
-[ "<checksum-will-be-added-in-documentation-processing>" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
58
-```
59
-
60
-If the script is valid, this command will return `OK, VALID`.
65
66
## What does `kickstart.sh` do?
67