Compare commits

..

4 Commits

Author SHA1 Message Date
William Hubbs
9d201d55bc Update ChangeLog 2018-03-14 21:27:24 -05:00
William Hubbs
d3f4199005 agetty.in: allow status to be displayed 2018-03-14 21:26:07 -05:00
William Hubbs
dc071dfacd supervise-daemon: fix off-by-one error 2018-03-14 21:26:07 -05:00
William Hubbs
42cd8115b9 version 0.35.5 2018-03-14 21:02:14 -05:00
4 changed files with 34 additions and 16 deletions

View File

@@ -1,3 +1,27 @@
commit d3f419900504b37aeda79b1bca68ac150d81efd6
Author: William Hubbs <w.d.hubbs@gmail.com>
Commit: William Hubbs <w.d.hubbs@gmail.com>
agetty.in: allow status to be displayed
commit dc071dfacd23686dd3ae7168c60193618e36f0fa
Author: William Hubbs <w.d.hubbs@gmail.com>
Commit: William Hubbs <w.d.hubbs@gmail.com>
supervise-daemon: fix off-by-one error
commit 42cd8115b94525cad2f70a14cc14862e88c779be
Author: William Hubbs <w.d.hubbs@gmail.com>
Commit: William Hubbs <w.d.hubbs@gmail.com>
version 0.35.5
commit d46beb28c4fec99253542442ecacf59499e3159f
Author: William Hubbs <w.d.hubbs@gmail.com>
Commit: William Hubbs <w.d.hubbs@gmail.com>
Update ChangeLog
commit f1c98888d8429a484b4f37930998e82ef18e8657
Author: William Hubbs <w.d.hubbs@gmail.com>
Commit: William Hubbs <w.d.hubbs@gmail.com>
@@ -1878,15 +1902,3 @@ Author: William Hubbs <w.d.hubbs@gmail.com>
Commit: William Hubbs <w.d.hubbs@gmail.com>
update news file
commit c333707cba356f4cacfd58a6fcc78f7c073dddcd
Author: William Hubbs <w.d.hubbs@gmail.com>
Commit: William Hubbs <w.d.hubbs@gmail.com>
Remove all occurances of 'before *' from dependencies
Using wildcards in dependencies causes issues when rc_parallel is set to
yes because it can lead to deadlocks.
All dependencies need to be explicit rather than implicit.
This is the first stage of moving this direction.

View File

@@ -1,3 +1,3 @@
NAME= openrc
VERSION= 0.35.4
VERSION= 0.35.5
PKG= ${NAME}-${VERSION}

View File

@@ -16,7 +16,6 @@ term_type="${term_type:-linux}"
command=/sbin/agetty
command_args_foreground="${agetty_options} ${port} ${baud} ${term_type}"
pidfile="/run/${RC_SVCNAME}.pid"
export EINFO_QUIET="${quiet:-yes}"
depend() {
after local
@@ -29,5 +28,12 @@ start_pre() {
eerror "symbolic links to it for the ports you want to start"
eerror "agetty on and add those to the appropriate runlevels."
return 1
else
export EINFO_QUIET="${quiet:-yes}"
fi
}
stop_pre()
{
export EINFO_QUIET="${quiet:-yes}"
}

View File

@@ -232,8 +232,8 @@ static char *make_cmdline(char **argv)
for (c = argv; c && *c; c++)
len += (strlen(*c) + 1);
cmdline = xmalloc(len);
memset(cmdline, 0, len);
cmdline = xmalloc(len+1);
memset(cmdline, 0, len+1);
for (c = argv; c && *c; c++) {
strcat(cmdline, *c);
strcat(cmdline, " ");