8 lines
120 B
Plaintext
8 lines
120 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
test -r /etc/sysconfig/config && . /etc/sysconfig/config
|
||
|
|
||
|
if test -x "${CUSTOMD}" ; then
|
||
|
. "${CUSTOMD}"
|
||
|
fi
|