mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 17:04:32 +04:00
* split travelmate.s in a new central travelmate function library (usr/lib/travelmate-functions.sh) plus a smal service script (/usr/bin/travelmate-service.sh) * the vpn-, mail- and login scripts are now using the central function library * rework the ntp hotplug script * harden the config parsing * support the curl interface option to specify which network pathway is used for outgoing requests * the travelmate status now includes the backend- and frontend version information * LuCI: use a special travelmate interface, e.g. trm_wwan or use an existing wwan interface * LuCI: no longer call the logread binary, use rpc / the ubus log object instead * LuCI: various code cleanups * LuCI: various small usability improvements * readme update Signed-off-by: Dirk Brenken <dev@brenken.org>
19 lines
529 B
Bash
Executable File
19 lines
529 B
Bash
Executable File
#!/bin/sh
|
|
# ntp hotplug script for travelmate
|
|
# Copyright (c) 2020-2025 Dirk Brenken (dev@brenken.org)
|
|
# This is free software, licensed under the GNU General Public License v3.
|
|
|
|
# set (s)hellcheck exceptions
|
|
# shellcheck disable=all
|
|
|
|
trm_init="/etc/init.d/travelmate"
|
|
trm_funlib="/usr/lib/travelmate-functions.sh"
|
|
trm_ntplock="/var/lock/travelmate.ntp.lock"
|
|
|
|
if mkdir "${trm_ntplock}" 2>/dev/null; then
|
|
if [ "${ACTION}" = "stratum" ] && "${trm_init}" enabled; then
|
|
. "${trm_funlib}"
|
|
f_log "info" "get ntp time sync"
|
|
fi
|
|
fi
|