|
Lines 255-261
Link Here
|
| 255 |
# Fix for baselayout-1.12.10 (bug 174256) |
255 |
# Fix for baselayout-1.12.10 (bug 174256) |
| 256 |
[ -z ${SVCNAME} ] && SVCNAME="${myservice}" |
256 |
[ -z ${SVCNAME} ] && SVCNAME="${myservice}" |
| 257 |
|
257 |
|
| 258 |
while read targetline ; do |
258 |
while read -u 4 targetline ; do |
| 259 |
# skip comments and blank lines |
259 |
# skip comments and blank lines |
| 260 |
[[ ${targetline}\# == \#* ]] && continue |
260 |
[[ ${targetline}\# == \#* ]] && continue |
| 261 |
|
261 |
|
|
Lines 283-289
Link Here
|
| 283 |
|
283 |
|
| 284 |
# Queue this setting for the next call to dm_crypt_execute_${SVCNAME} |
284 |
# Queue this setting for the next call to dm_crypt_execute_${SVCNAME} |
| 285 |
eval "${targetline}" |
285 |
eval "${targetline}" |
| 286 |
done < /etc/conf.d/dmcrypt |
286 |
done 4< /etc/conf.d/dmcrypt |
| 287 |
|
287 |
|
| 288 |
# If we have a target queued up, then execute it |
288 |
# If we have a target queued up, then execute it |
| 289 |
dm_crypt_execute_${SVCNAME} |
289 |
dm_crypt_execute_${SVCNAME} |