diff options
author | Micah <micah@leap.se> | 2015-11-26 15:50:17 -0500 |
---|---|---|
committer | Micah <micah@leap.se> | 2015-12-01 10:06:33 -0500 |
commit | b610c85e9872b5f9347a52af1fe6acb9a2662530 (patch) | |
tree | 35061c4aea747d088cab4fa63e07841f27f0cef9 | |
parent | d0e3e1d596a536da0a1729519cfd561ee19e2ce8 (diff) |
Check for clamav processes on mx nodes (#7648)
Change-Id: I751985c0537d430b568a670a2f70d1906b0f0f35
-rw-r--r-- | tests/white-box/mx.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/white-box/mx.rb b/tests/white-box/mx.rb index f49d2ab4..8b5cc485 100644 --- a/tests/white-box/mx.rb +++ b/tests/white-box/mx.rb @@ -38,6 +38,9 @@ class Mx < LeapTest assert_running 'postfwd2::cache' assert_running 'postfwd2::policy' assert_running '/usr/sbin/unbound' + assert_running '^/usr/sbin/clamd -c /etc/clamav/clamd.conf$' + assert_running '^/usr/sbin/clamav-milter --config-file=/etc/clamav/clamav-milter.conf$' + assert_running '^/usr/bin/freshclam -d --quiet --config-file=/etc/clamav/freshclam.conf$' pass end |