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: 41045
This commit is contained in:
parent
6b7ee13094
commit
281f415885
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ START=00
|
|||
|
||||
boot() {
|
||||
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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue