diff options
author | David Oberhollenzer <david.oberhollenzer@tele2.at> | 2018-07-22 20:55:34 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@tele2.at> | 2018-07-22 21:38:14 +0200 |
commit | c3249ae0c9777e8d16c90ce1ca441e90ad4fcf7b (patch) | |
tree | 314681ced1099af8e0b6c1c85e33a56eb5efeb51 /configure.ac | |
parent | 056d3c8e6481088b8e5d9791d8c1762a3c8d1a83 (diff) |
Add swclock service for systems without a hardware RTC
Some systems don't have a hardware real time clock and don't know the time
after bootin. An obvious soulution for this is to use time from an ntp
server. Unfortunately that requires domain name resolution, which resolvers
like unbound won't do for us, if the DNSSEC certificates aren't valid, which
they aren't if we start out with a time around 1970-1-1.
The "software clock" service tries to provide a workaround by restoring a
reasonably valid time from a backup file during boot, which we update when
shuting down. If we wan't a more correct time, we have to update it from
NTP in between.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f6fd637..564689a 100644 --- a/configure.ac +++ b/configure.ac @@ -56,6 +56,7 @@ AC_DEFINE_DIR(SOCKDIR, localstatedir/run, [Directory for initd socket]) AC_DEFINE_DIR(BINPATH, bindir, [Fully evaluated bin directory]) AC_DEFINE_DIR(SBINPATH, sbindir, [Fully evaluated sbin directory]) AC_DEFINE_DIR(ETCPATH, sysconfdir, [Fulle evaluated etc directory]) +AC_DEFINE_DIR(STATEFILESPATH, prefix/var/lib, [Path for persistent state files]) AC_CONFIG_FILES([services/sigkill]) AC_CONFIG_FILES([services/sigterm]) @@ -67,6 +68,8 @@ AC_CONFIG_FILES([services/ifcfg]) AC_CONFIG_FILES([services/ifdown]) AC_CONFIG_FILES([services/modules]) AC_CONFIG_FILES([services/hostapd]) +AC_CONFIG_FILES([services/swclock]) +AC_CONFIG_FILES([services/swclocksave]) AC_CONFIG_FILES([scripts/devfs.sh]) AC_CONFIG_FILES([scripts/ifrename.sh]) AC_CONFIG_FILES([scripts/ifcfg.sh]) |