mirror of https://github.com/hak5/openwrt-owl.git
base-files: fix argument order to date in sysfixtime so that it also works with musl
Seems like the reverse order relies on GNU specific getopt hackery which musl does not replicate Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 41045owl
parent
6b7ee13094
commit
281f415885
|
@ -5,7 +5,7 @@ START=00
|
||||||
|
|
||||||
boot() {
|
boot() {
|
||||||
local curtime="$(date +%s)"
|
local curtime="$(date +%s)"
|
||||||
local maxtime="$(find /etc -type f -exec date +%s -r {} \; | sort -nr | head -n1)"
|
local maxtime="$(find /etc -type f -exec date -r {} +%s \; | sort -nr | head -n1)"
|
||||||
[ $curtime -lt $maxtime ] && date -s @$maxtime
|
[ $curtime -lt $maxtime ] && date -s @$maxtime
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue