Sfoglia il codice sorgente

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 anni fa
parent
commit
0b0b22b679
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      roles/mailserver/tasks/rspamd.yml

+ 1
- 1
roles/mailserver/tasks/rspamd.yml Vedi File

@@ -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…
Annulla
Salva