Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d1161c8aae | ||
|
|
528bfa13f9 | ||
|
|
5f1daa6f30 | ||
|
|
0445bc13f8 | ||
|
|
73d024228d |
35
ChangeLog
35
ChangeLog
@@ -1,3 +1,38 @@
|
||||
commit 528bfa13f9bac4797e4238d05edcfbc996a6be72
|
||||
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||
|
||||
another news typo fix
|
||||
|
||||
commit 5f1daa6f30849d95db1f6b4b84abdc9645db3f94
|
||||
Author: Doug Freed <dwfreed@mtu.edu>
|
||||
Commit: Doug Freed <dwfreed@mtu.edu>
|
||||
|
||||
modules-load: handle comments better
|
||||
|
||||
This handles comments without a trailing space after the comment
|
||||
character.
|
||||
|
||||
Reported-By: josef64
|
||||
|
||||
commit 0445bc13f84cd22c06c80464d51ab18651d42147
|
||||
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||
Commit: Doug Freed <dwfreed@mtu.edu>
|
||||
|
||||
typo fix
|
||||
|
||||
commit 73d024228d13c423939cc0eb2aa4be75e1481fc3
|
||||
Author: Doug Freed <dwfreed@mtu.edu>
|
||||
Commit: Doug Freed <dwfreed@mtu.edu>
|
||||
|
||||
version 0.21.5
|
||||
|
||||
commit 4809bc249f53f519d93fa7a7c444c4f9625061ac
|
||||
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||
|
||||
update changelog
|
||||
|
||||
commit 147855207199970aa0a10ffa6575e980ffb3bdb8
|
||||
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
NAME= openrc
|
||||
VERSION= 0.21.4
|
||||
VERSION= 0.21.5
|
||||
PKG= ${NAME}-${VERSION}
|
||||
|
||||
2
NEWS.md
2
NEWS.md
@@ -24,7 +24,7 @@ service scripts to refer to "openrc-run" instead of "runscript".
|
||||
In 0.21.4, a modules-load service was added. This works like the
|
||||
equivalent service in systemd. It looks for files named *.conf first in
|
||||
/usr/lib/modules-load.d, then /run/modules-load.d, then
|
||||
/etc/modules-lload.d. These files contain, a list of modules, one per
|
||||
/etc/modules-load.d. These files contain a list of modules, one per
|
||||
line, which should be loaded into the kernel. If a file name appears in
|
||||
/run/modules-load.d, it overrides a file of the same name in
|
||||
/usr/lib/modules-load.d. A file appearing in /etc/modules-load.d
|
||||
|
||||
@@ -44,8 +44,8 @@ load_modules()
|
||||
[ -z "$file" ] && return 0
|
||||
while read m x; do
|
||||
case $m in
|
||||
\;) continue ;;
|
||||
\#) continue ;;
|
||||
\;*) continue ;;
|
||||
\#*) continue ;;
|
||||
*) modules="$modules $m"
|
||||
;;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user