Compare commits
9 Commits
0.18.2
...
openrc-0.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5c8ba80ea7 | ||
|
|
e8ad6d2423 | ||
|
|
aa34435cc8 | ||
|
|
68f8e8aac2 | ||
|
|
ee54bfef05 | ||
|
|
7279b469ec | ||
|
|
8482008559 | ||
|
|
463d4ef00a | ||
|
|
b5629d4ea0 |
@@ -1,3 +1,3 @@
|
|||||||
NAME= openrc
|
NAME= openrc
|
||||||
VERSION= 0.11
|
VERSION= 0.11.2
|
||||||
PKG= ${NAME}-${VERSION}
|
PKG= ${NAME}-${VERSION}
|
||||||
|
|||||||
@@ -5,8 +5,8 @@
|
|||||||
description="Mount system critical filesystems in /dev."
|
description="Mount system critical filesystems in /dev."
|
||||||
|
|
||||||
depend() {
|
depend() {
|
||||||
use dev-mount udev-mount
|
use dev-mount
|
||||||
before udev mdev
|
before dev
|
||||||
keyword -prefix -vserver
|
keyword -prefix -vserver
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ depend()
|
|||||||
|
|
||||||
start()
|
start()
|
||||||
{
|
{
|
||||||
ebegin "${description/Create/Creating}"
|
ebegin "Creating ${description#Create }"
|
||||||
@LIBEXECDIR@/sh/tmpfiles.sh --create ${tmpfiles_opts}
|
@LIBEXECDIR@/sh/tmpfiles.sh --create ${tmpfiles_opts}
|
||||||
eend $?
|
eend $?
|
||||||
return 0
|
return 0
|
||||||
|
|||||||
@@ -8,12 +8,12 @@ depend()
|
|||||||
{
|
{
|
||||||
# Convert to 'need dev' when the new udev is ready, for OpenRC 0.11
|
# Convert to 'need dev' when the new udev is ready, for OpenRC 0.11
|
||||||
#need dev-mount
|
#need dev-mount
|
||||||
need dev
|
use dev
|
||||||
}
|
}
|
||||||
|
|
||||||
start()
|
start()
|
||||||
{
|
{
|
||||||
ebegin "${description/Create/Creating}"
|
ebegin "Creating ${description#Create }"
|
||||||
@LIBEXECDIR@/sh/tmpfiles.sh --create ${tmpfiles_opts}
|
@LIBEXECDIR@/sh/tmpfiles.sh --create ${tmpfiles_opts}
|
||||||
eend $?
|
eend $?
|
||||||
return 0
|
return 0
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ Show all runlevels and their services.
|
|||||||
List all services that have crashed.
|
List all services that have crashed.
|
||||||
.It Fl l , -list
|
.It Fl l , -list
|
||||||
List all defined runlevels.
|
List all defined runlevels.
|
||||||
.It fl r , -runlevel
|
.It Fl r , -runlevel
|
||||||
Print the current runlevel name.
|
Print the current runlevel name.
|
||||||
.It Fl s , -servicelist
|
.It Fl s , -servicelist
|
||||||
Show all services.
|
Show all services.
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ _f() {
|
|||||||
|
|
||||||
if [ ! -e "$path" ]; then
|
if [ ! -e "$path" ]; then
|
||||||
dryrun_or_real install -m"$mode" -o"$uid" -g"$gid" /dev/null "$path"
|
dryrun_or_real install -m"$mode" -o"$uid" -g"$gid" /dev/null "$path"
|
||||||
[ -n "$arg" ] && _w "$@"
|
[ -z "$arg" ] || _w "$@"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -72,7 +72,7 @@ _F() {
|
|||||||
[ $CREATE -gt 0 ] || return 0
|
[ $CREATE -gt 0 ] || return 0
|
||||||
|
|
||||||
dryrun_or_real install -m"$mode" -o"$uid" -g"$gid" /dev/null "$path"
|
dryrun_or_real install -m"$mode" -o"$uid" -g"$gid" /dev/null "$path"
|
||||||
[ -n "$arg" ] && _w "$@"
|
[ -z "$arg" ] || _w "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
_d() {
|
_d() {
|
||||||
@@ -201,6 +201,7 @@ tmpfiles_d=''
|
|||||||
# `/run/tmpfiles/foo.conf' will always be read after `/etc/tmpfiles.d/bar.conf'
|
# `/run/tmpfiles/foo.conf' will always be read after `/etc/tmpfiles.d/bar.conf'
|
||||||
for d in ${tmpfiles_dirs} ; do
|
for d in ${tmpfiles_dirs} ; do
|
||||||
[ -d $d ] && for f in ${d}/*.conf ; do
|
[ -d $d ] && for f in ${d}/*.conf ; do
|
||||||
|
[ "$f" = "$d/systemd.conf" ] && continue
|
||||||
[ -f $f ] && tmpfiles_basenames="${tmpfiles_basenames}\n${f##*/}"
|
[ -f $f ] && tmpfiles_basenames="${tmpfiles_basenames}\n${f##*/}"
|
||||||
done # for f in ${d}
|
done # for f in ${d}
|
||||||
done # for d in ${tmpfiles_dirs}
|
done # for d in ${tmpfiles_dirs}
|
||||||
@@ -252,46 +253,34 @@ for FILE in $tmpfiles_d ; do
|
|||||||
|
|
||||||
# XXX: Upstream says whitespace is NOT permitted in the Path argument.
|
# XXX: Upstream says whitespace is NOT permitted in the Path argument.
|
||||||
# But IS allowed when globs are expanded for the x/r/R/z/Z types.
|
# But IS allowed when globs are expanded for the x/r/R/z/Z types.
|
||||||
while read line; do
|
while read cmd path mode uid gid age arg; do
|
||||||
LINENUM=$(( LINENUM+1 ))
|
LINENUM=$(( LINENUM+1 ))
|
||||||
|
|
||||||
# This will skip over comments and empty lines
|
|
||||||
set -- $line
|
|
||||||
|
|
||||||
# Unless we have both command and path, skip this line.
|
# Unless we have both command and path, skip this line.
|
||||||
if [ -z "$1" -o -z "$2" ]; then
|
if [ -z "$cmd" -o -z "$path" ]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# whine about invalid entries
|
# whine about invalid entries
|
||||||
case $1 in
|
case $cmd in
|
||||||
f|F|w|d|D|p|L|c|b|x|r|R|z|Z) ;;
|
f|F|w|d|D|p|L|c|b|x|r|R|z|Z) ;;
|
||||||
\#) continue ;;
|
\#) continue ;;
|
||||||
*) warninvalid ; continue ;;
|
*) warninvalid ; continue ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
cmd=$1
|
|
||||||
path=$2
|
|
||||||
|
|
||||||
# fall back on defaults when parameters are passed as '-'
|
# fall back on defaults when parameters are passed as '-'
|
||||||
if [ "$3" = '-' -o "$3" = '' ]; then
|
if [ "$mode" = '-' -o "$mode" = '' ]; then
|
||||||
case ${1} in
|
case "$cmd" in
|
||||||
p|f|F) mode=0644 ;;
|
p|f|F) mode=0644 ;;
|
||||||
d|D) mode=0755 ;;
|
d|D) mode=0755 ;;
|
||||||
z|Z|x|r|R|L) ;;
|
z|Z|x|r|R|L) ;;
|
||||||
esac
|
esac
|
||||||
else
|
|
||||||
mode=$3
|
|
||||||
fi
|
fi
|
||||||
uid=$4
|
|
||||||
gid=$5
|
|
||||||
age=$6
|
|
||||||
arg=$7
|
|
||||||
|
|
||||||
[ "${4}" = '-' -o "${4}" = '' ] && uid=0
|
[ "$uid" = '-' -o "$uid" = '' ] && uid=0
|
||||||
[ "${5}" = '-' -o "${5}" = '' ] && gid=0
|
[ "$gid" = '-' -o "$gid" = '' ] && gid=0
|
||||||
[ "${6}" = '-' -o "${6}" = '' ] && age=0
|
[ "$age" = '-' -o "$age" = '' ] && age=0
|
||||||
[ "${7}" = '-' -o "${7}" = '' ] && arg=''
|
[ "$arg" = '-' -o "$arg" = '' ] && arg=''
|
||||||
set -- "$path" "$mode" "$uid" "$gid" "$age" "$arg"
|
set -- "$path" "$mode" "$uid" "$gid" "$age" "$arg"
|
||||||
|
|
||||||
[ "$VERBOSE" -eq "1" ] && echo _$cmd "$@"
|
[ "$VERBOSE" -eq "1" ] && echo _$cmd "$@"
|
||||||
|
|||||||
Reference in New Issue
Block a user