Skip to content

Commit b0e809b

Browse files
authored
Merge pull request #29 from macmpi/dev
version 1.2.1: in gadget mode, change default DNS to Quad9
2 parents bba4271 + 33d45c8 commit b0e809b

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

headless.apkovl.tar.gz

-3 Bytes
Binary file not shown.

headless.apkovl.tar.gz.sha512

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
36892e9aa76807941602160ff62948c8953eefa36f9b386a0c7302fc46710b473a3e14b7eaf223a1ae6ac6454a839c78049c311fdbd50a204b2a011cb8faa474 headless.apkovl.tar.gz
1+
7ba93d6c47ada0f1ddf89d55be49342df16fec1e2e1ac38a09e82f34248a86f953d9efbac0eeba472e33d03d85f8fe8e65cb88c914fac1268e932cc39e558f4b headless.apkovl.tar.gz

make.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@
33
# SPDX-FileCopyrightText: Copyright 2022-2023, macmpi
44
# SPDX-License-Identifier: MIT
55

6-
# script meant to be run on Alpine (busybox) or on Ubuntu
7-
# verify busybox build options if eventually using other platforms
6+
# Script meant to be run on Alpine (busybox) or on Ubuntu.
7+
# Check busybox version & options if eventually using other platforms.
8+
9+
# Ubuntu LTS busybox 1.30.1 tar does NOT support setting owner/group/mtime
10+
# probably available after busybox 1.31.1, following 2019-08-01 change:
11+
# https://git.busybox.net/busybox/commit/?id=e6a87e74837ba5f2f2207a75cd825acf8cf28afb
12+
# This limitation requires copying files and setting owner/group/mtime before archiving.
13+
814
command -v doas > /dev/null || alias doas="/usr/bin/sudo"
915

1016
build_path="$(mktemp -d)"

overlay/usr/local/bin/headless_bootstrap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-FileCopyrightText: Copyright 2022-2023, macmpi
44
# SPDX-License-Identifier: MIT
55

6-
HDLSBSTRP_VERSION="1.2"
6+
HDLSBSTRP_VERSION="1.2.1"
77

88
_apk() {
99
local cmd="$1"
@@ -263,8 +263,8 @@ if ! install -m644 "${ovlpath}"/interfaces /etc/network/interfaces >/dev/null 2>
263263
gateway 10.42.0.1
264264
265265
EOF
266-
nameserver 208.67.222.222
267-
nameserver 208.67.220.220
266+
nameserver 9.9.9.9
267+
nameserver 149.112.112.112
268268

269269
EOF
270270
;;

sample_unattended.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ cat <<-EOF > /tmp/ANSWERFILE
6868
INTERFACESOPTS=none
6969
7070
# Set Public nameserver
71-
DNSOPTS="-n 208.67.222.222"
71+
DNSOPTS="-n 9.9.9.9"
7272
7373
# Set timezone to UTC
7474
TIMEZONEOPTS="UTC"

0 commit comments

Comments
 (0)