Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
feba5d86b7 | ||
|
|
3b1e96a6a3 | ||
|
|
79998bdf9c |
@@ -1,3 +1,3 @@
|
||||
NAME= openrc
|
||||
VERSION= 0.18
|
||||
VERSION= 0.18.1
|
||||
PKG= ${NAME}-${VERSION}
|
||||
|
||||
@@ -221,16 +221,16 @@ done
|
||||
# Load our script
|
||||
sourcex "$RC_SERVICE"
|
||||
|
||||
for _d in $required_dirs; do
|
||||
if [ ! -d $_d ]; then
|
||||
eval "printf '%s\n' $required_dirs" | while read _d; do
|
||||
if [ ! -d "$_d" ]; then
|
||||
eerror "$RC_SVCNAME: \`$_d' is not a directory"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
unset _d
|
||||
|
||||
for _f in $required_files; do
|
||||
if [ ! -r $_f ]; then
|
||||
eval "printf '%s\n' $required_files" | while read _f; do
|
||||
if [ ! -r "$_f" ]; then
|
||||
eerror "$RC_SVCNAME: \`$_f' is not readable"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
@@ -305,6 +305,7 @@ find_mounts(struct args *args)
|
||||
|
||||
buffer = xmalloc(sizeof(char) * PATH_MAX * 3);
|
||||
while (fgets(buffer, PATH_MAX * 3, fp)) {
|
||||
netdev = -1;
|
||||
p = buffer;
|
||||
from = strsep(&p, " ");
|
||||
to = strsep(&p, " ");
|
||||
|
||||
Reference in New Issue
Block a user