From dc75fcc86961b49ec32a07518a433f77b6a75692 Mon Sep 17 00:00:00 2001 From: Roy Lenferink Date: Thu, 5 Oct 2017 22:51:12 +0200 Subject: [PATCH] Documentation: minor improvements Fixed example hostname in docker run command Added bash statements for storing certificates --- Documentation/deployment.md | 5 +++++ Documentation/network-setup.md | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Documentation/deployment.md b/Documentation/deployment.md index 2eaee2b1..3a7c31fb 100644 --- a/Documentation/deployment.md +++ b/Documentation/deployment.md @@ -163,6 +163,11 @@ $ sudo cp ca.crt server.crt server.key /etc/matchbox Save `client.crt`, `client.key`, and `ca.crt` for later use (e.g. `~/.matchbox`). +```sh +$ mkdir -p ~/.matchbox +$ cp client.crt client.key ca.crt ~/.matchbox/ +``` + ## Start matchbox Start the `matchbox` service and enable it if you'd like it to start on every boot. diff --git a/Documentation/network-setup.md b/Documentation/network-setup.md index 70230094..d28f27c2 100644 --- a/Documentation/network-setup.md +++ b/Documentation/network-setup.md @@ -174,7 +174,7 @@ sudo docker run --rm --cap-add=NET_ADMIN --net=host quay.io/coreos/dnsmasq \ --dhcp-userclass=set:ipxe,iPXE \ --dhcp-boot=tag:#ipxe,undionly.kpxe \ --dhcp-boot=tag:ipxe,http://matchbox.example.com:8080/boot.ipxe \ - --address=/matchbox.example/192.168.1.2 \ + --address=/matchbox.example.com/192.168.1.2 \ --log-queries \ --log-dhcp ```