summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2023-01-25 15:41:43 +0100
committerNatanael Copa <ncopa@alpinelinux.org>2023-01-25 14:47:22 +0000
commit6500eff2a2818c2f50b185e1df7f50b962bda9a5 (patch)
treec6b69e8a610531d54af476cc7777b047879a6c48
parent39d6d3c8d63985b0ad44235ff2b322ce3be63cbc (diff)
downloadalpine-conf-6500eff2a2818c2f50b185e1df7f50b962bda9a5.zip
setup-alpine: fix check for autosetup of network
-rw-r--r--setup-alpine.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-alpine.in b/setup-alpine.in
index f21b966..d7bcce2 100644
--- a/setup-alpine.in
+++ b/setup-alpine.in
@@ -59,7 +59,7 @@ case "$USEANSWERFILE" in
http*://*|ftp://*)
# dynamically download answer file from URL (supports HTTP(S) and FTP)
# ensure the network is up, otherwise setup a temporary interface config
- if ! rc-status networking --quiet status; then
+ if ! rc-service networking --quiet status; then
setup-interfaces -ar
fi