Skip to content

Commit c83d3be

Browse files
Fix typo in fleet provisioning sample readme (#427)
1 parent d6479bb commit c83d3be

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

samples/fleetprovisioning.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ There are many different ways to run the Fleet Provisioning sample because of ho
7575

7676
``` sh
7777
# For Windows: replace 'python3' with 'python' and '/' with '\'
78-
python3 fleet_provisioning.py --endpoint <endpoint> --cert <file> --key <file> --template_name <name> --template_parameters <parameters>
78+
python3 fleetprovisioning.py --endpoint <endpoint> --cert <file> --key <file> --template_name <name> --template_parameters <parameters>
7979
```
8080

8181
You can also pass a Certificate Authority file (CA) if your certificate and key combination requires it:
8282

8383
``` sh
8484
# For Windows: replace 'python3' with 'python' and '/' with '\'
85-
python3 fleet_provisioning.py --endpoint <endpoint> --cert <file> --key <file> --template_name <name> --template_parameters <parameters> --ca_file <file>
85+
python3 fleetprovisioning.py --endpoint <endpoint> --cert <file> --key <file> --template_name <name> --template_parameters <parameters> --ca_file <file>
8686
```
8787

8888
However, this is just one way using the `CreateKeysAndCertificate` workflow. Below are a detailed list of instructions with the different ways to connect. While the detailed instructions do not show it, you can pass `--ca_file` as needed no matter which way you connect via Fleet Provisioning.
@@ -271,7 +271,7 @@ To run the sample with your certificate and private key, use the following comma
271271

272272
``` sh
273273
# For Windows: replace 'python3' with 'python' and '/' with '\'
274-
python3 fleet_provisioning.py --endpoint <endpoint> --cert <file> --key <file> --template_name <name> --template_parameters '{\"SerialNumber\":\"1\",\"DeviceLocation\":\"Seattle\"}'
274+
python3 fleetprovisioning.py --endpoint <endpoint> --cert <file> --key <file> --template_name <name> --template_parameters '{\"SerialNumber\":\"1\",\"DeviceLocation\":\"Seattle\"}'
275275
```
276276

277277
As per normal, replace the `<>` parameters with the proper values. Notice that we provided substitution values for the two parameters in the template body, `DeviceLocation` and `SerialNumber`.
@@ -307,5 +307,5 @@ Finally, you can also pass the certificate signing request while invoking the Fl
307307

308308
``` sh
309309
# For Windows: replace 'python3' with 'python' and '/' with '\'
310-
python3 fleet_provisioning.py --endpoint <endpoint> --cert <file> --key <file> --template_name <name> --template_parameters '{\"SerialNumber\":\"1\",\"DeviceLocation\":\"Seattle\"}' --csr <path to csr file>
310+
python3 fleetprovisioning.py --endpoint <endpoint> --cert <file> --key <file> --template_name <name> --template_parameters '{\"SerialNumber\":\"1\",\"DeviceLocation\":\"Seattle\"}' --csr <path to csr file>
311311
```

0 commit comments

Comments
 (0)