13 lines
151 B
Plaintext
13 lines
151 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
exec 2>&1
|
||
|
|
||
|
if [ -r ./conf ]; then
|
||
|
. ./conf
|
||
|
if [ -n "${CONF_FILE}" ]; then
|
||
|
OPTS="${OPTS} -c '${CONF_FILE}'"
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
exec udevmon ${OPTS}
|