0001-Fix-audispd-path-in-auditd.conf.patch 937 B

1234567891011121314151617181920212223242526272829303132
  1. From 6e1fd09f7bc131c8f16d9cc43e2455ba4650c651 Mon Sep 17 00:00:00 2001
  2. From: Carlos Santos <casantos@datacom.com.br>
  3. Date: Sat, 3 Nov 2018 08:25:58 -0300
  4. Subject: [PATCH] Fix audispd path in auditd.conf
  5. audispd is installed at /usr/sbin but the configuration file pointed
  6. to /sbin, causing auditd to fail on startup.
  7. This patch cannot be sent upstream because audispd does not exist
  8. anymore on the master branch (it was merged to auditd).
  9. Signed-off-by: Carlos Santos <casantos@datacom.com.br>
  10. ---
  11. init.d/auditd.conf | 2 +-
  12. 1 file changed, 1 insertion(+), 1 deletion(-)
  13. diff --git a/init.d/auditd.conf b/init.d/auditd.conf
  14. index 4dcda83..998904f 100644
  15. --- a/init.d/auditd.conf
  16. +++ b/init.d/auditd.conf
  17. @@ -13,7 +13,7 @@ max_log_file = 8
  18. num_logs = 5
  19. priority_boost = 4
  20. disp_qos = lossy
  21. -dispatcher = /sbin/audispd
  22. +dispatcher = /usr/sbin/audispd
  23. name_format = NONE
  24. ##name = mydomain
  25. max_log_file_action = ROTATE
  26. --
  27. 2.17.1