12 lines
167 B
Bash
Executable File
12 lines
167 B
Bash
Executable File
#!/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
|