diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-04-14 10:33:30 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-04-14 10:33:30 +0000 |
commit | 6e81bdc57790eb0816777711c4b4eda97076b5f1 (patch) | |
tree | 0b382944db90d4546885a6b3a92ad3226ee455f2 /setup-alpine.in | |
parent | b21500f3de545fe42832ec5c7fa121f5051594fb (diff) | |
download | alpine-conf-6e81bdc57790eb0816777711c4b4eda97076b5f1.zip |
setup-alpine: make udhcpc quiet
udhcpc will print to stdout the ip addr it got. This gets in the way for
the root password prompt so we redirect udhcpc to /dev/null
Diffstat (limited to 'setup-alpine.in')
-rw-r--r-- | setup-alpine.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-alpine.in b/setup-alpine.in index 7840300..5017b01 100644 --- a/setup-alpine.in +++ b/setup-alpine.in @@ -130,7 +130,7 @@ else $PREFIX/sbin/setup-interfaces fi # start the networking in background -/etc/init.d/networking --quiet start & +/etc/init.d/networking --quiet start >/dev/null & # setup up dns if no dhcp was configured grep '^iface.*dhcp' $ROOT/etc/network/interfaces > /dev/null ||\ |