forked from Spark/ssm-services
23 lines
375 B
Plaintext
Executable File
23 lines
375 B
Plaintext
Executable File
#!/usr/bin/env watchman
|
|
# This is a script to set up the links in /dev in absence of e?(u|s?m)dev.
|
|
# Run this _after_ miscfs.
|
|
|
|
service_type='oneshot'
|
|
|
|
# Config
|
|
cfg_links=(
|
|
'/proc/self/fd;/dev/fd'
|
|
)
|
|
|
|
start() {
|
|
for l in "${cfg_links[@]}"; do
|
|
IFS=';' read dest link <<< "$l"
|
|
|
|
[[ -e "$link" ]] || {
|
|
[[ -e "$dest" ]] && {
|
|
ln -s "$dest" "$link"
|
|
}
|
|
}
|
|
done
|
|
}
|