Add script that will keep trying to set the date time (for bootup) that

will run in the background to help speedup boot times.
This commit is contained in:
Scott Ullrich 2008-11-09 02:50:55 +00:00
parent 1f03d30ce8
commit 3fb60b53b4

View File

@ -0,0 +1,10 @@
#!/bin/sh
NOTSYNCED="true"
while [ "$NOTSYNCED" = "true" ]; do
ntpdate "0.pfsense.pool.ntp.org"
if [ "$?" = "0" ]; then
NOTSYNCED="false"
fi
done