[openwrt/openwrt] netifd: replace timesvr with timesrv
LEDE Commits
lede-commits at lists.infradead.org
Fri Jun 26 18:19:29 EDT 2020
hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/c856f7adfb355b218728a5a7cc60d6fafd9b3b94
commit c856f7adfb355b218728a5a7cc60d6fafd9b3b94
Author: Sukru Senli <sukru.senli at iopsys.eu>
AuthorDate: Fri May 22 16:33:04 2020 +0200
netifd: replace timesvr with timesrv
/lib/netifd/dhcp.script:
Keep support for 'timesvr' while also supporting 'timesrv'
Add log message indicating deprecation of 'timesvr'
Signed-off-by: Sukru Senli <sukru.senli at iopsys.eu>
---
package/network/config/netifd/files/lib/netifd/dhcp.script | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/package/network/config/netifd/files/lib/netifd/dhcp.script b/package/network/config/netifd/files/lib/netifd/dhcp.script
index 00604f40e7..6585b641d6 100755
--- a/package/network/config/netifd/files/lib/netifd/dhcp.script
+++ b/package/network/config/netifd/files/lib/netifd/dhcp.script
@@ -46,10 +46,16 @@ setup_interface () {
proto_add_dns_search "$i"
done
+ # TODO: Deprecate timesvr in favor of timesrv
+ if [ -n "$timesvr" -a -z "$timesrv" ]; then
+ timesrv="$timesvr"
+ echo "Environment variable 'timesvr' will be deprecated; use 'timesrv' instead."
+ fi
+
proto_add_data
[ -n "$ZONE" ] && json_add_string zone "$ZONE"
[ -n "$ntpsrv" ] && json_add_string ntpserver "$ntpsrv"
- [ -n "$timesvr" ] && json_add_string timeserver "$timesvr"
+ [ -n "$timesrv" ] && json_add_string timeserver "$timesrv"
[ -n "$hostname" ] && json_add_string hostname "$hostname"
[ -n "$message" ] && json_add_string message "$message"
[ -n "$timezone" ] && json_add_int timezone "$timezone"
More information about the lede-commits
mailing list