Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Lane <archlinux@jelmail.com>2023-12-07 19:45:58 +0000
committerJohn Lane <archlinux@jelmail.com>2023-12-07 21:00:27 +0000
commit72c274924a0a96d5122b1dcd05f9e893c0aa33e4 (patch)
treec9209a09e39b60a484785b73f4dd07213167b1c2
parent977e0b0fd4acf32fefc872977694aa9e041fa255 (diff)
Allow download automated script using TFTP
-rwxr-xr-xconfigs/releng/airootfs/root/.automated_script.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/releng/airootfs/root/.automated_script.sh b/configs/releng/airootfs/root/.automated_script.sh
index 8e72bf7..0d95012 100755
--- a/configs/releng/airootfs/root/.automated_script.sh
+++ b/configs/releng/airootfs/root/.automated_script.sh
@@ -16,7 +16,7 @@ automated_script() {
local script rt
script="$(script_cmdline)"
if [[ -n "${script}" && ! -x /tmp/startup_script ]]; then
- if [[ "${script}" =~ ^((http|https|ftp)://) ]]; then
+ if [[ "${script}" =~ ^((http|https|ftp|tftp)://) ]]; then
# there's no synchronization for network availability before executing this script
printf '%s: waiting for network-online.target\n' "$0"
until systemctl --quiet is-active network-online.target; do