|
Line 29
Link Here
|
|
|
29 |
# gentoo bug-report 909640, cat to read file, grep -v to drop commented lines, then awk command unchanged |
| 30 |
# not ideal fix because we call grep, instead of subshell load, probably a nicer way to do it in awk alone? |
| 31 |
# note: this function will be called once for EACH instance of an openrc lxc container when dependencies are generated by openrc |
|
Line 30
Link Here
|
| 30 |
awk 'BEGIN { FS="[ \t]*=[ \t]*"; _link=""; _type="" } |
33 |
grep -v '^#' ${CONFIGFILE} | awk 'BEGIN { FS="[ \t]*=[ \t]*"; _link=""; _type="" } |
| 31 |
-- |
|
|
|
Line 38
Link Here
|
| 38 |
}; }' <${CONFIGFILE} |
41 |
}; }' # <${CONFIGFILE} |
| 39 |
-- |
|
|