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