ssm-services/init.d/devfs-permissions

24 lines
473 B
Plaintext
Raw Normal View History

2014-07-21 04:54:56 +00:00
#!/usr/bin/env watchman
2014-07-20 20:24:01 +00:00
# This is a script to set up the right permissions in /dev in absence of e?(u|s?m)dev.
# Run this _after_ miscfs.
service_type='oneshot'
# Config
cfg_devices=(
'/dev/snd;root:audio;770'
'/dev/dri;root:video;770'
'/dev/fuse;root:root;777'
)
start() {
for d in "${cfg_devices[@]}"; do
IFS=';' read device owner perms <<< "$d"
[[ -e "$device" ]] && {
chown -R "$owner" "$device"
chmod -R "$perms" "$device"
}
done
}