diff --git a/.travis.yml b/.travis.yml index 43b6f5e2..0981acb0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,4 +25,4 @@ deploy: go: '1.6.2' condition: "$TRAVIS_PULL_REQUEST = false" notifications: - email: false \ No newline at end of file + email: false diff --git a/README.md b/README.md index 0ccf22ba..ad972d3f 100644 --- a/README.md +++ b/README.md @@ -51,3 +51,4 @@ The [examples](examples) show how to network boot and provision higher-order Cor * [GRUB Netboot](Documentation/grub.md) CoreOS * iPXE Boot CoreOS with a root fs * iPXE Boot CoreOS + diff --git a/examples/ignition/install-reboot.yaml b/examples/ignition/install-reboot.yaml index 594ad117..75af2384 100644 --- a/examples/ignition/install-reboot.yaml +++ b/examples/ignition/install-reboot.yaml @@ -19,7 +19,7 @@ storage: mode: 0500 contents: inline: | - #!/bin/bash -e + #!/bin/bash -ex curl "{{.ignition_endpoint}}?{{.query}}&os=installed" -o ignition.json coreos-install -d /dev/sda -C {{.coreos_channel}} -V {{.coreos_version}} -i ignition.json {{if index . "baseurl"}}-b {{.baseurl}}{{end}} udevadm settle @@ -33,4 +33,5 @@ passwd: {{ range $element := .ssh_authorized_keys }} - {{$element}} {{end}} -{{end}} \ No newline at end of file +{{end}} + diff --git a/examples/ignition/install-shutdown.yaml b/examples/ignition/install-shutdown.yaml index 64ec86ba..d0ee3b4f 100644 --- a/examples/ignition/install-shutdown.yaml +++ b/examples/ignition/install-shutdown.yaml @@ -19,7 +19,7 @@ storage: mode: 0500 contents: inline: | - #!/bin/bash -e + #!/bin/bash -ex curl "{{.ignition_endpoint}}?{{.query}}&os=installed" -o ignition.json coreos-install -d /dev/sda -C {{.coreos_channel}} -V {{.coreos_version}} -i ignition.json {{if index . "baseurl"}}-b {{.baseurl}}{{end}} udevadm settle @@ -34,3 +34,4 @@ passwd: - {{$element}} {{end}} {{end}} +