diff options
author | Rolf Eike Beer | 2019-08-13 17:41:56 +0200 |
---|---|---|
committer | Denys Vlasenko | 2019-09-12 12:06:46 +0200 |
commit | 7f89ebe18ff2f5b3b5e8b2d617d682cb1d56293b (patch) | |
tree | 17279670e1bc99fb8d6b5b2c8a0db02bcf203daa | |
parent | af18b301eb16eb8496b31e5386b4c21c9045a5e6 (diff) | |
download | busybox-7f89ebe18ff2f5b3b5e8b2d617d682cb1d56293b.zip busybox-7f89ebe18ff2f5b3b5e8b2d617d682cb1d56293b.tar.gz |
examples/udhcp/simple.script: print the filename actually changed
Signed-off-by: Rolf Eike Beer <eb@emlix.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-x | examples/udhcp/simple.script | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/udhcp/simple.script b/examples/udhcp/simple.script index 29199aa..6658fbe 100755 --- a/examples/udhcp/simple.script +++ b/examples/udhcp/simple.script @@ -53,7 +53,6 @@ case "$1" in done fi - echo "Recreating $RESOLV_CONF" # If the file is a symlink somewhere (like /etc/resolv.conf # pointing to /run/resolv.conf), make sure things work. if test -L "$RESOLV_CONF"; then @@ -61,6 +60,7 @@ case "$1" in test -e "$RESOLV_CONF" || touch "$RESOLV_CONF" fi realconf=$(readlink -f "$RESOLV_CONF" 2>/dev/null || echo "$RESOLV_CONF") + echo "Recreating $realconf" tmpfile="$realconf-$$" > "$tmpfile" [ -n "$domain" ] && echo "search $domain" >> "$tmpfile" |