From 06a255bea85a8be8982f8baccd7cd2baf914a890 Mon Sep 17 00:00:00 2001 From: Martin Konrad Date: Mon, 11 Dec 2017 23:08:17 -0500 Subject: [PATCH] Fix params for Debian --- manifests/params.pp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/manifests/params.pp b/manifests/params.pp index bc5dfca..15a22a7 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -3,21 +3,22 @@ 'Debian': { $user = 'clamav' $clamscan_bin = '/usr/bin/clamscan' - } + $clamd_package_name = 'clamav-daemon' + $clamd_service_name = 'clamav-daemon' } default: { # we default to assuming RedHat family OSes $user = 'clam' $clamscan_bin = '/usr/bin/clamscan' + $clamd_package_name = 'clamd' + $clamd_service_name = 'clamd' } } $package = 'clamav' $clamd_config_file = '/etc/clamd.conf' - $clamd_service_name = 'clamd' $clamd_service_enable = true $clamd_service_ensure = 'running' - $clamd_package_name = 'clamd' $clamd_log_file = '/var/log/clamav/clamd.log' $clamd_log_file_unlock = 'no' $clamd_log_file_max_size = '0'