mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
d25aaad848
The cron job should save the current time to disk every 15 minutes, not reset the time to what it originally was.
11 lines
402 B
Text
11 lines
402 B
Text
post_install () {
|
|
echo "**********************************************************************"
|
|
echo "To keep fake-hwclock up to date in case of a power failure, add the"
|
|
echo "following job to root crontab: "
|
|
echo "*/15 * * * * /usr/lib/systemd/scripts/fake-hwclock.sh save"
|
|
echo "**********************************************************************"
|
|
}
|
|
|
|
post_upgrade () {
|
|
post_install
|
|
}
|