-
-
Notifications
You must be signed in to change notification settings - Fork 735
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "all: ensure pidfile is created if a reload causes child to st…
…art" This reverts commit 3ea412d. This commit should only have included keepalived/core/pidfile.c
- Loading branch information
1 parent
39ed8b3
commit cbf0a7d
Showing
25 changed files
with
159 additions
and
323 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* <www.linuxvirtualserver.org>. It monitor & manipulate | ||
* a loadbalanced server pool using multi-layer checks. | ||
* | ||
* Part: FILE CHECK. Monitor contents of a file | ||
* Part: FILE CHECK. Monitor contents if a file | ||
* | ||
* Authors: Quentin Armitage, <[email protected]> | ||
* | ||
|
@@ -46,7 +46,7 @@ free_file_check(checker_t *checker) | |
static void | ||
dump_file_check(FILE *fp, const checker_t *checker) | ||
{ | ||
tracked_file_t *tfp = checker->check_type.file_check; | ||
tracked_file_t *tfp = checker->data; | ||
|
||
conf_write(fp, " Keepalive method = FILE_CHECK"); | ||
conf_write(fp, " Tracked file = %s", tfp->fname); | ||
|
@@ -64,14 +64,6 @@ track_file_handler(const vector_t *strvec) | |
return; | ||
} | ||
|
||
if (current_tfile->file) { | ||
report_config_error(CONFIG_GENERAL_ERROR, "%s track_file already specified as %s - ignoring %s", FMT_RS(current_rs, current_vs), current_tfile->file->fname, strvec_slot(strvec, 1)); | ||
return; | ||
} | ||
|
||
if (vector_size(strvec) > 2) | ||
report_config_error(CONFIG_WARNING, "%s track_file %s has extra parameters - ignoring %s ...", FMT_RS(current_rs, current_vs), strvec_slot(strvec, 1), strvec_slot(strvec, 2)); | ||
|
||
current_tfile->file = vsf; | ||
} | ||
|
||
|
@@ -114,7 +106,6 @@ track_file_weight_handler(const vector_t *strvec) | |
|
||
current_tfile->weight = weight; | ||
current_tfile->weight_reverse = reverse; | ||
log_message(LOG_INFO, "Set track_file weight %d", current_tfile->weight); | ||
} | ||
|
||
static void | ||
|
@@ -156,16 +147,14 @@ add_rs_to_track_files(void) | |
{ | ||
virtual_server_t *vs; | ||
real_server_t *rs; | ||
checker_details_t checker_details; | ||
tracked_file_monitor_t *tfl; | ||
|
||
list_for_each_entry(vs, &check_data->vs, e_list) { | ||
list_for_each_entry(rs, &vs->rs, e_list) { | ||
list_for_each_entry(tfl, &rs->track_files, e_list) { | ||
/* queue new checker - we don't have a compare function since we don't | ||
* update file checkers that way on a reload. */ | ||
checker_details.file_check = tfl->file; | ||
queue_checker(rs, &file_checker_funcs, NULL, checker_details, NULL, false); | ||
queue_checker(&file_checker_funcs, NULL, tfl->file, NULL, false); | ||
current_checker->vs = vs; | ||
current_checker->rs = rs; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.