소스 검색

synapse workers-doc-to-yaml script: compatibility++ with non-gnu awk

pull/456/head
Marcel Partap 5 년 전
부모
커밋
b6b95fe742
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      roles/matrix-synapse/files/workers-doc-to-yaml.awk

+ 3
- 3
roles/matrix-synapse/files/workers-doc-to-yaml.awk 파일 보기

@@ -55,7 +55,7 @@ enable_parsing {
workers = (workers ? workers "\n" : "") " - " worker_type

# loop through the lines (2 - number of fields in record)
for (i = 1; i < NF + 1; i++) {
for (i = 2; i < NF + 1; i++) {
# copy line for gsub replacements
line = $i

@@ -106,7 +106,7 @@ enable_parsing {
}

# white-space only line?
} else if (line ~ /^\w*$/) {
} else if (line ~ /^ *$/) {

if (i > 3 && i < NF) {
# print white-space lines unless 1st or last line in section
@@ -120,7 +120,7 @@ enable_parsing {
worker_stanza_append(" # " line linefeed)

# and take note of words hinting at additional conditions to be met
if (line ~ /\<[Ii]f\>|\<[Ff]or\>/) {
if (line ~ /(^| )[Ii]f |(^| )[Ff]or /) {
endpoints_seem_conditional = 1
}
}


불러오는 중...
취소
저장