Lines 112-122
while true ; do
Link Here
|
112 |
done |
112 |
done |
113 |
|
113 |
|
114 |
# Load the configfile given on the command line |
114 |
# Load the configfile given on the command line |
115 |
if [ -e "$configfile" ] |
115 |
if [ "$configfile" != "" ] |
116 |
then |
116 |
then |
117 |
. "$configfile" |
117 |
if [ -e "$configfile" ] |
118 |
else |
118 |
then |
119 |
die "$configfile does not exist."; |
119 |
. "$configfile" |
|
|
120 |
else |
121 |
die "$configfile does not exist."; |
122 |
fi |
120 |
fi |
123 |
fi |
121 |
|
124 |
|
122 |
# Make sure options from the command line get the highest precedence |
125 |
# Make sure options from the command line get the highest precedence |
123 |
- |
|
|