2014-07-21 08:54:56 +04:00
|
|
|
#!/usr/bin/env watchman
|
2014-07-21 00:24:01 +04:00
|
|
|
# This is a script to set up the right permissions in /dev in absence of e?(u|s?m)dev.
|
|
|
|
|
|
|
|
service_type='oneshot'
|
|
|
|
|
2014-07-28 02:09:11 +04:00
|
|
|
# Config moved to conf.d
|
2014-07-21 00:24:01 +04:00
|
|
|
|
2014-07-28 07:52:32 +04:00
|
|
|
spawn() {
|
2014-07-21 00:24:01 +04:00
|
|
|
for d in "${cfg_devices[@]}"; do
|
|
|
|
IFS=';' read device owner perms <<< "$d"
|
|
|
|
|
|
|
|
[[ -e "$device" ]] && {
|
|
|
|
chown -R "$owner" "$device"
|
|
|
|
chmod -R "$perms" "$device"
|
|
|
|
}
|
|
|
|
done
|
|
|
|
}
|