aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2020-01-01 04:11:54 +0200
committerDaniel Golle <daniel@makrotopia.org>2020-01-07 15:36:03 +0200
commitfedc5d30ae0a39a7d308adae8ed918dc5b603067 (patch)
tree5e49ba767f037c9aca63df54d259dc1dc73f3bc1 /package/base-files/files/etc
parent414d0541381d432e69190f394dfe2a6e8122d6bb (diff)
downloadupstream-fedc5d30ae0a39a7d308adae8ed918dc5b603067.tar.gz
upstream-fedc5d30ae0a39a7d308adae8ed918dc5b603067.tar.bz2
upstream-fedc5d30ae0a39a7d308adae8ed918dc5b603067.zip
base-files: move /tmp/resolv.conf.auto to /tmp/resolv.conf.d/
Having it in a directory it more friendly for mount-bind. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'package/base-files/files/etc')
-rwxr-xr-xpackage/base-files/files/etc/init.d/boot5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/base-files/files/etc/init.d/boot b/package/base-files/files/etc/init.d/boot
index 09b7f44c79..44311c9e23 100755
--- a/package/base-files/files/etc/init.d/boot
+++ b/package/base-files/files/etc/init.d/boot
@@ -31,8 +31,9 @@ boot() {
chmod 0700 /tmp/.uci
touch /var/log/wtmp
touch /var/log/lastlog
- touch /tmp/resolv.conf.auto
- ln -sf /tmp/resolv.conf.auto /tmp/resolv.conf
+ mkdir -p /tmp/resolv.conf.d
+ touch /tmp/resolv.conf.d/resolv.conf.auto
+ ln -sf /tmp/resolv.conf.d/resolv.conf.auto /tmp/resolv.conf
grep -q debugfs /proc/filesystems && /bin/mount -o noatime -t debugfs debugfs /sys/kernel/debug
[ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe