summaryrefslogtreecommitdiff
path: root/sh/tmpfiles.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'sh/tmpfiles.sh.in')
-rwxr-xr-xsh/tmpfiles.sh.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/sh/tmpfiles.sh.in b/sh/tmpfiles.sh.in
index cb9eceb..59fdcd7 100755
--- a/sh/tmpfiles.sh.in
+++ b/sh/tmpfiles.sh.in
@@ -43,13 +43,17 @@ relabel() {
_b() {
# Create a block device node if it doesn't exist yet
local path=$1 mode=$2 uid=$3 gid=$4 age=$5 arg=$6
- [ ! -e "$path" ] && dryrun_or_real mknod $path b ${arg%:*} ${arg#*:}
+ [ ! -e "$path" ] && \
+ dryrun_or_real mknod -m $mode $path b ${arg%:*} ${arg#*:} && \
+ dryrun_or_real chown $uid:$gid $path
}
_c() {
# Create a character device node if it doesn't exist yet
local path=$1 mode=$2 uid=$3 gid=$4 age=$5 arg=$6
- [ ! -e "$path" ] && dryrun_or_real mknod $path c ${arg%:*} ${arg#*:}
+ [ ! -e "$path" ] && \
+ dryrun_or_real mknod -m $mode $path c ${arg%:*} ${arg#*:} && \
+ dryrun_or_real chown $uid:$gid $path
}