Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5dce6f57d9 | ||
|
|
8122e2d8f4 | ||
|
|
ff07754be2 |
30
ChangeLog
30
ChangeLog
@@ -1,3 +1,25 @@
|
|||||||
|
commit 8122e2d8f4fa8538e62f6a5e6b7306afcfc23c1c
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
supervise-daemon: elevate some log messages to warnings
|
||||||
|
|
||||||
|
Prior to this change, we were logging unexpected terminations of daemons
|
||||||
|
we were supervising at the info level. This change moves the logs to
|
||||||
|
warnings.
|
||||||
|
|
||||||
|
commit ff07754be27e20a4d272661b071b63b435018b51
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
version 0.33.1
|
||||||
|
|
||||||
|
commit acaed1f910a2a00fdd5b6aeab752c552075a7292
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
Update ChangeLog
|
||||||
|
|
||||||
commit 91109e31d81ecd48f5690ad6f63103fca545dec7
|
commit 91109e31d81ecd48f5690ad6f63103fca545dec7
|
||||||
Author: William Hubbs <w.d.hubbs@gmail.com>
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
@@ -1430,11 +1452,3 @@ Commit: William Hubbs <w.d.hubbs@gmail.com>
|
|||||||
|
|
||||||
X-Gentoo-Bug: 597390
|
X-Gentoo-Bug: 597390
|
||||||
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=597390
|
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=597390
|
||||||
|
|
||||||
commit c44c904a61418189c989e978b0237e5b161263ef
|
|
||||||
Author: Joe Maloney <jpm820@gmail.com>
|
|
||||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
|
||||||
|
|
||||||
init.d.misc/wpa_supplicant: find wireless interface for FreeBSD
|
|
||||||
|
|
||||||
This fixes #101.
|
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
NAME= openrc
|
NAME= openrc
|
||||||
VERSION= 0.33
|
VERSION= 0.33.1
|
||||||
PKG= ${NAME}-${VERSION}
|
PKG= ${NAME}-${VERSION}
|
||||||
|
|||||||
@@ -771,17 +771,17 @@ int main(int argc, char **argv)
|
|||||||
} else
|
} else
|
||||||
respawn_count++;
|
respawn_count++;
|
||||||
if (respawn_count >= respawn_max) {
|
if (respawn_count >= respawn_max) {
|
||||||
syslog(LOG_INFO, "respawned \"%s\" too many times, "
|
syslog(LOG_WARNING, "respawned \"%s\" too many times, "
|
||||||
"exiting", exec);
|
"exiting", exec);
|
||||||
exiting = true;
|
exiting = true;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (WIFEXITED(i))
|
if (WIFEXITED(i))
|
||||||
syslog(LOG_INFO, "%s, pid %d, exited with return code %d",
|
syslog(LOG_WARNING, "%s, pid %d, exited with return code %d",
|
||||||
exec, child_pid, WEXITSTATUS(i));
|
exec, child_pid, WEXITSTATUS(i));
|
||||||
else if (WIFSIGNALED(i))
|
else if (WIFSIGNALED(i))
|
||||||
syslog(LOG_INFO, "%s, pid %d, terminated by signal %d",
|
syslog(LOG_WARNING, "%s, pid %d, terminated by signal %d",
|
||||||
exec, child_pid, WTERMSIG(i));
|
exec, child_pid, WTERMSIG(i));
|
||||||
child_pid = fork();
|
child_pid = fork();
|
||||||
if (child_pid == -1)
|
if (child_pid == -1)
|
||||||
|
|||||||
Reference in New Issue
Block a user