bug fix: dns config reset

This commit is contained in:
usmannasir
2024-01-19 12:05:53 +05:00
parent 6cfc2ad488
commit e6fe9eff1e

View File

@@ -636,13 +636,11 @@ milter_default_action = accept
command = 'sudo yum install rspamd clamav clamd clamav-update -y'
else:
command = 'sudo apt-get install rspamd clamav clamav-daemon -y'
command = 'DEBIAN_FRONTEND=noninteractive apt-get install rspamd clamav clamav-daemon -y'
cmd = shlex.split(command)
with open(mailUtilities.RspamdInstallLogPath, 'w') as f:
res = subprocess.call(cmd, stdout=f)
res = subprocess.call(command, stdout=f, shell=True)
###### makefile