Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 192 |
- |
1 |
#!/bin/sh
|
|
|
2 |
cat <<EOF
|
|
|
3 |
if [ -f \${config_directory}/custom.cfg ]; then
|
|
|
4 |
source \${config_directory}/custom.cfg
|
|
|
5 |
elif [ -z "\${config_directory}" -a -f \$prefix/custom.cfg ]; then
|
|
|
6 |
source \$prefix/custom.cfg;
|
|
|
7 |
fi
|
|
|
8 |
EOF
|
|
|
9 |
|