12 lines
167 B
Plaintext
12 lines
167 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
test -r /etc/sysconfig/config && . /etc/sysconfig/config
|
||
|
|
||
|
if test "$CUSTOMD" != "yes"; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
if test -x "${CUSTOMD}" ; then
|
||
|
. "${CUSTOMD}"
|
||
|
fi
|