diff options
author | Christian Hesse <mail@eworm.de> | 2013-10-30 11:32:36 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-10-30 11:32:36 +0100 |
commit | 4844cf8625f635baaa0d3c31182e34f89ec70bc5 (patch) | |
tree | 2c9e62e8414ef7484277b62603d036a739c2d805 /pacredir.c | |
parent | 8ae44b24b8282492ac9573169d4d6b065fe7a9a5 (diff) | |
download | paccache-4844cf8625f635baaa0d3c31182e34f89ec70bc5.tar.gz paccache-4844cf8625f635baaa0d3c31182e34f89ec70bc5.tar.zst |
reset bad status for hosts on SIGHUP
Diffstat (limited to 'pacredir.c')
-rw-r--r-- | pacredir.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -368,11 +368,11 @@ void sigterm_callback(int signal) { void sighup_callback(int signal) { struct hosts * tmphosts = hosts; - write_log(stdout, "Received SIGHUP, marking all hosts offline.\n"); + write_log(stdout, "Received SIGHUP, resetting bad status for hosts.\n"); while (tmphosts->host != NULL) { - tmphosts->pacserve.online = 0; - tmphosts->pacdbserve.online = 0; + tmphosts->pacserve.bad = 0; + tmphosts->pacdbserve.bad = 0; tmphosts = tmphosts->next; } } |