diff --git a/docs/troubleshooting/pxe_boot.md b/docs/troubleshooting/pxe_boot.md index 9f63e083..e566b1be 100644 --- a/docs/troubleshooting/pxe_boot.md +++ b/docs/troubleshooting/pxe_boot.md @@ -5,7 +5,7 @@ To view PXE server (includes DHCP, TFTP and HTTP server) logs: ```sh -docker-compose --project-directory ./metal/roles/pxe-server/build/ logs --follow +./scripts/pxe-logs ``` ## Nodes not booting from the network diff --git a/scripts/pxe-logs b/scripts/pxe-logs new file mode 100755 index 00000000..9d77d4ff --- /dev/null +++ b/scripts/pxe-logs @@ -0,0 +1,3 @@ +#!/bin/sh + +docker compose --project-directory ./metal/roles/pxe-server/files/ logs --follow