Skip to content

Commit 889f4a2

Browse files
authored
Merge pull request #1557 from netbootxyz/RC
2 parents 0906dbc + c98bff5 commit 889f4a2

19 files changed

+218
-120
lines changed

.github/workflows/pull-requests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
2626
- name: Syntax Check
2727
run: |
28-
ansible-playbook -i inventory site.yml --syntax-check
28+
ansible-playbook site.yml --syntax-check
2929
3030
- name: Ansible lint
3131
run: |

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
55

66
## [Unreleased]
77

8+
## [2.0.84] - 2025-01-04
9+
10+
## Added
11+
12+
- UEFI Shell available under utilities for x86/ARM UEFI mode
13+
- Floppy boot images for UEFI
14+
- Dasharo Tools Suite
15+
- Latest GRML added with ARM support
16+
17+
## Changed
18+
19+
- Moves win_base_url and rhel_base_url out of boot.cfg to local-vars.ipxe as they are
20+
user defined variables.
21+
- Adds a check in boot.cfg to see if live_endpoint is set from local-vars.ipxe. This
22+
will allow the user to set their overrides locally on their network.
23+
824
## [2.0.83] - 2024-11-07
925

1026
## Changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG NBXYZ_OVERRIDES=default
22

3-
FROM ghcr.io/netbootxyz/builder:latest as builder
3+
FROM ghcr.io/netbootxyz/builder:latest AS builder
44

55
# repo for build
66
COPY . /ansible
@@ -11,11 +11,11 @@ ENV EXTRA_VARS=""
1111
FROM builder AS netbootxyz-production
1212
ENV EXTRA_VARS="--extra-vars @script/netbootxyz-overrides.yml"
1313

14-
FROM netbootxyz-${NBXYZ_OVERRIDES} as final
14+
FROM netbootxyz-${NBXYZ_OVERRIDES} AS final
1515
RUN \
1616
echo "**** running ansible ****" && \
1717
cd /ansible && \
18-
ansible-playbook -i inventory site.yml ${EXTRA_VARS}
18+
ansible-playbook site.yml ${EXTRA_VARS}
1919

2020
# runtime stage
2121
FROM alpine:latest

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,16 +90,16 @@ Please see the [self-hosting docs](https://netboot.xyz/docs/selfhosting/) for mo
9090
To generate, run:
9191

9292
```
93-
ansible-playbook -i inventory site.yml
93+
ansible-playbook site.yml
9494
```
9595

9696
The build output will be located in /var/www/html by default.
9797

9898
#### Deploying with Docker
9999

100100
```
101-
docker build -t localbuild -f Dockerfile .
102-
docker run --rm -it -v $(pwd):/buildout localbuild
101+
docker build -t localbuild --platform=linux/amd64 -f Dockerfile .
102+
docker run --rm -it --platform=linux/amd64 -v $(pwd):/buildout localbuild
103103
```
104104

105105
The build output will be in the generated folder `buildout`

0 commit comments

Comments
 (0)