Browse Source

Provide a restart command which does a handover to an new binary with the same arguments

master
Con Kolivas 10 years ago
parent
commit
92c67ab289
  1. 10
      src/ckpool.c
  2. 4
      src/ckpool.h

10
src/ckpool.c

@ -273,6 +273,12 @@ retry:
close(connfd);
} else
LOGWARNING("Failed to send_procmsg to connector");
} else if (cmdmatch(buf, "restart")) {
if (!fork()) {
ckp->initial_args[ckp->args++] = strdup("-H");
ckp->initial_args[ckp->args] = NULL;
execv(ckp->initial_args[0], (char *const *)ckp->initial_args);
}
} else {
LOGINFO("Listener received unhandled message: %s", buf);
send_unix_msg(sockd, "unknown");
@ -1072,6 +1078,10 @@ int main(int argc, char **argv)
global_ckp = &ckp;
memset(&ckp, 0, sizeof(ckp));
ckp.loglevel = LOG_NOTICE;
ckp.initial_args = ckalloc(sizeof(char *) * (argc + 2)); /* Leave room for extra -H */
for (ckp.args = 0; ckp.args < argc; ckp.args++)
ckp.initial_args[ckp.args] = strdup(argv[ckp.args]);
ckp.initial_args[ckp.args] = NULL;
while ((c = getopt_long(argc, argv, "Ac:d:g:Hhkl:n:pS:s:", long_options, &i)) != -1) {
switch (c) {

4
src/ckpool.h

@ -79,6 +79,10 @@ struct server_instance {
typedef struct server_instance server_instance_t;
struct ckpool_instance {
/* The initial command line arguments */
char **initial_args;
/* Number of arguments */
int args;
/* Filename of config file */
char *config;
/* Kill old instance with same name */

Loading…
Cancel
Save