From 521500386760f4cfeeef813a692de607c9695af3 Mon Sep 17 00:00:00 2001 From: pancho horrillo Date: Sat, 24 Dec 2016 22:18:47 +0100 Subject: [PATCH] pixiecore: Fix some backslashes within shell snippets (#23) --- pixiecore/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pixiecore/README.md b/pixiecore/README.md index 5859158..c6dbcf9 100644 --- a/pixiecore/README.md +++ b/pixiecore/README.md @@ -53,11 +53,11 @@ from core-os.net each time a machine tries to boot. We can also download the files and use those: ```shell -wget https://alpha.release.core-os.net/amd64-usr/current/coreos_production_pxe.vmlinuz \ -wget https://alpha.release.core-os.net/amd64-usr/current/coreos_production_pxe_image.cpio.gz \ +wget https://alpha.release.core-os.net/amd64-usr/current/coreos_production_pxe.vmlinuz +wget https://alpha.release.core-os.net/amd64-usr/current/coreos_production_pxe_image.cpio.gz sudo pixiecore boot \ coreos_production_pxe.vmlinuz \ - coreos_production_pxe_image.cpio.gz + coreos_production_pxe_image.cpio.gz \ --cmdline='coreos.autologin' ``` @@ -75,7 +75,7 @@ hostname to `pixiecore-test`, and serve it: wget -O my-cloud-config.yml https://goo.gl/7HzZf2 sudo pixiecore boot \ coreos_production_pxe.vmlinuz \ - coreos_production_pxe_image.cpio.gz + coreos_production_pxe_image.cpio.gz \ --cmdline='coreos.autologin cloud-config-url={{ ID "./my-cloud-config.yml" }}' ```