Skip to content

Commit

Permalink
docs: switch code block to text for DHCP prereq
Browse files Browse the repository at this point in the history
This PR fixes a turbo-nit where the configs for the DHCP settings
weren't getting processed as code blocks

Signed-off-by: Spencer Smith <[email protected]>
  • Loading branch information
rsmitty committed Mar 31, 2022
1 parent 15f6730 commit b7cc8b2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions website/content/v0.2/Getting Started/prereq-dhcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ options:

In the ISC DHCP server, these options look like:

```config
```text
next-server 172.16.199.50;
filename "ipxe.efi";
```
Expand All @@ -64,7 +64,7 @@ In our example below, `172.16.199.50` is the IP address of our Sidero service.

`ipxe-metal.conf`:

```config
```text
allow bootp;
allow booting;
Expand Down Expand Up @@ -100,7 +100,7 @@ class "httpclients" {
Once this file is created, we can include it from our main `dhcpd.conf` inside a
`subnet` section.

```config
```text
shared-network sidero {
subnet 172.16.199.0 netmask 255.255.255.0 {
option domain-name-servers 8.8.8.8, 1.1.1.1;
Expand All @@ -118,7 +118,7 @@ Essentially, the quotes around the path need to be entered as HTML entities:

Ubiquiti EdgeRouter configuration statement:

```config
```text
set service dhcp-server shared-network-name sidero \
subnet 172.16.199.1 \
subnet-parameters "include &quote;/config/ipxe-metal.conf&quot;;"
Expand Down
8 changes: 4 additions & 4 deletions website/content/v0.3/Getting Started/prereq-dhcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ options:

In the ISC DHCP server, these options look like:

```config
```text
next-server 172.16.199.50;
filename "ipxe.efi";
```
Expand All @@ -64,7 +64,7 @@ In our example below, `172.16.199.50` is the IP address of our Sidero service.

`ipxe-metal.conf`:

```config
```text
allow bootp;
allow booting;
Expand Down Expand Up @@ -100,7 +100,7 @@ class "httpclients" {
Once this file is created, we can include it from our main `dhcpd.conf` inside a
`subnet` section.

```config
```text
shared-network sidero {
subnet 172.16.199.0 netmask 255.255.255.0 {
option domain-name-servers 8.8.8.8, 1.1.1.1;
Expand All @@ -118,7 +118,7 @@ Essentially, the quotes around the path need to be entered as HTML entities:

Ubiquiti EdgeRouter configuration statement:

```config
```text
set service dhcp-server shared-network-name sidero \
subnet 172.16.199.1 \
subnet-parameters "include &quote;/config/ipxe-metal.conf&quot;;"
Expand Down
8 changes: 4 additions & 4 deletions website/content/v0.4/Getting Started/prereq-dhcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ options:

In the ISC DHCP server, these options look like:

```config
```text
next-server 172.16.199.50;
filename "ipxe.efi";
```
Expand All @@ -64,7 +64,7 @@ In our example below, `172.16.199.50` is the IP address of our Sidero service.

`ipxe-metal.conf`:

```config
```text
allow bootp;
allow booting;
Expand Down Expand Up @@ -100,7 +100,7 @@ class "httpclients" {
Once this file is created, we can include it from our main `dhcpd.conf` inside a
`subnet` section.

```config
```text
shared-network sidero {
subnet 172.16.199.0 netmask 255.255.255.0 {
option domain-name-servers 8.8.8.8, 1.1.1.1;
Expand All @@ -118,7 +118,7 @@ Essentially, the quotes around the path need to be entered as HTML entities:

Ubiquiti EdgeRouter configuration statement:

```config
```text
set service dhcp-server shared-network-name sidero \
subnet 172.16.199.1 \
subnet-parameters "include &quot;/etc/dhcp/ipxe-metal.conf&quot;;"
Expand Down
8 changes: 4 additions & 4 deletions website/content/v0.5/Getting Started/prereq-dhcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ options:

In the ISC DHCP server, these options look like:

```config
```text
next-server 172.16.199.50;
filename "ipxe.efi";
```
Expand All @@ -68,7 +68,7 @@ In our example below, `172.16.199.50` is the IP address of our Sidero service.

`ipxe-metal.conf`:

```config
```text
allow bootp;
allow booting;
Expand Down Expand Up @@ -104,7 +104,7 @@ class "httpclients" {
Once this file is created, we can include it from our main `dhcpd.conf` inside a
`subnet` section.

```config
```text
shared-network sidero {
subnet 172.16.199.0 netmask 255.255.255.0 {
option domain-name-servers 8.8.8.8, 1.1.1.1;
Expand All @@ -122,7 +122,7 @@ Essentially, the quotes around the path need to be entered as HTML entities:

Ubiquiti EdgeRouter configuration statement:

```config
```text
set service dhcp-server shared-network-name sidero \
subnet 172.16.199.1 \
subnet-parameters "include &quot;/etc/dhcp/ipxe-metal.conf&quot;;"
Expand Down

0 comments on commit b7cc8b2

Please sign in to comment.