Version 2.02.120 -
===============================
+ Daemons (libdaemon) support exit on idle also in non-systemd environment.
Provide make dist and make rpm targets
Configure lvm.conf for use_lvmetad and use_lvmpolld.
Add lvpoll for cmdline communication with lvmpolld.
static int _is_idle(daemon_state s)
{
- return _systemd_activation && s.idle && s.idle->is_idle && !s.threads->next;
+ return s.idle && s.idle->is_idle && !s.threads->next;
}
static struct timeval *_get_timeout(daemon_state s)
{
- return (_systemd_activation && s.idle) ? s.idle->ptimeout : NULL;
+ return s.idle ? s.idle->ptimeout : NULL;
}
static void _reset_timeout(daemon_state s)