소스 검색

rmilter fails to start due to a missing trailing semicolon.

there is a missing semicolon that causes rmilter not to start with error:
"config file parse error! line: 156, text: tempdir, reason: syntax error"

which, as expected is the following line
Rob Shaw 7 년 전
부모
커밋
0b0b22b679
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      roles/mailserver/tasks/rspamd.yml

+ 1
- 1
roles/mailserver/tasks/rspamd.yml 파일 보기

@@ -38,7 +38,7 @@
38 38
   copy: src=etc_rmilter.conf.common dest=/etc/rmilter.conf.common
39 39
 
40 40
 - name: Configure rmilter socket
41
-  lineinfile: dest=/etc/rmilter.conf regexp=^bind_socket line="bind_socket = inet:9900@localhost"
41
+  lineinfile: dest=/etc/rmilter.conf regexp=^bind_socket line="bind_socket = inet:9900@localhost;"
42 42
 
43 43
 - name: Configure rmilter service
44 44
   copy: src=lib_systemd_system_rmilter.socket dest=/lib/systemd/system/rmilter.socket

Loading…
취소
저장