Skip to content
Merged
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
5071736
Merge pull request #2654 from codeenigma/Gitlab-stop-fix-PR-2.x
drazenCE Sep 2, 2025
a8ba8e4
Fixing-email-title-for-backup-validation (#2657)
matej5 Sep 4, 2025
057138d
Adding-task-to-create-aurora-cluster (#2659)
matej5 Sep 8, 2025
17115af
Fixing installer variable bug.
gregharvey Sep 10, 2025
d4be42e
Merge branch 'bug_fixes' into bug_fixes-PR-devel-2.x
gregharvey Sep 10, 2025
176df44
Fixing tests for external PRs.
gregharvey Sep 10, 2025
2484532
Testing with a fork.
gregharvey Sep 10, 2025
cde9a60
Adding repo owner's username into installer string.
gregharvey Sep 10, 2025
e3ed90e
Merge branch 'bug_fixes' into bug_fixes-PR-devel-2.x
gregharvey Sep 10, 2025
a2c4bac
Refactoring config repo detection to simplify.
gregharvey Sep 10, 2025
1d069f0
Merge branch 'bug_fixes' into bug_fixes-PR-devel-2.x
gregharvey Sep 10, 2025
7ce204b
No longer permitted to use an integer as a truthy value.
gregharvey Sep 10, 2025
fa2aab2
Merge branch 'bug_fixes' into bug_fixes-PR-devel-2.x
gregharvey Sep 10, 2025
c7ae003
No longer permitted to use existence check as a truthy value.
gregharvey Sep 10, 2025
16b09f2
Merge branch 'bug_fixes' into bug_fixes-PR-devel-2.x
gregharvey Sep 10, 2025
6379b2e
Can't see a reason why linotp var shouldn't be a boolean.
gregharvey Sep 10, 2025
2e39684
Merge branch 'bug_fixes' into bug_fixes-PR-devel-2.x
gregharvey Sep 10, 2025
318f532
No longer permitted to use existence check as a truthy value.
gregharvey Sep 10, 2025
72e2929
Merge branch 'bug_fixes' into bug_fixes-PR-devel-2.x
gregharvey Sep 10, 2025
1466d24
Fixing truthy errors in ce_deploy role.
gregharvey Sep 10, 2025
1aa26f0
Merge branch 'bug_fixes' into bug_fixes-PR-devel-2.x
gregharvey Sep 10, 2025
3c14dfa
No longer permitted to use an integer as a truthy value.
gregharvey Sep 10, 2025
449d5fe
Merge branch 'bug_fixes' into bug_fixes-PR-devel-2.x
gregharvey Sep 10, 2025
2b30a78
Fixing truthy variable mistakes. (#2662)
gregharvey Sep 10, 2025
cb63668
feat(php): Add FPM slow logrotate (#2625)
klausi Sep 10, 2025
9f05b90
r73458-install-php-gmp-by-default2 (#2667)
nfawbert Sep 10, 2025
a89ae45
Wazuh-mitre-report-setup (#2588)
drazenCE Sep 11, 2025
71278e9
Wazuh mitre report setup pr 2.x (#2669)
drazenCE Sep 11, 2025
65a6a0d
pin_ansible_version (#2671)
tymofiisobchenko Sep 12, 2025
854a245
Fixing-ce-provision-vars (#2678)
drazenCE Sep 16, 2025
132c5fd
Merge branch '2.x' into bug_fixes
gregharvey Sep 16, 2025
1850230
Updating-string (#2507)
matej5 Sep 17, 2025
d62d4e6
Added-tasks-to-backup-Aurora-and-copy-AMI-to-safe-region (#2682)
matej5 Sep 18, 2025
6717286
SG-creation-update (#2605)
matej5 Sep 18, 2025
3bcee17
Fixing-copy-AMI-to-backup-region (#2684)
matej5 Sep 18, 2025
7bd773f
Fixing-ami-copy-task (#2686)
matej5 Sep 19, 2025
a74b945
Merge branch '2.x' into bug_fixes
gregharvey Sep 22, 2025
9472416
Updating clamav command to use flock avoiding duplicate processes run…
gregharvey Sep 22, 2025
ca228d1
Merge branch 'devel-2.x' of github.com:codeenigma/ce-provision into b…
gregharvey Sep 22, 2025
de15ef3
Merging devel.
gregharvey Sep 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions roles/debian/clamav/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ clamav:
# scheduled scans, set to an empty list for no timers
timers:
- clamscan_daily:
timer_command: /usr/local/clamav/script/clamscan_daily # path to clamscan wrapper script, ensure it is defined in clamav.scripts
timer_OnCalendar: "*-*-* 02:30:00" # see systemd.time documentation - https://www.freedesktop.org/software/systemd/man/latest/systemd.time.html#Calendar%20Events
server_name: "{{ inventory_hostname }}" # for identification via email, defaults to Ansible inventory name.
timer_command: /usr/bin/flock -n /var/run/clamscan.lock -c /usr/local/clamav/script/clamscan_daily # command to run clamscan wrapper script, ensure script location is defined in clamav.scripts
timer_OnCalendar: "*-*-* 02:30:00" # see systemd.time documentation - https://www.freedesktop.org/software/systemd/man/latest/systemd.time.html#Calendar%20Events
server_name: "{{ inventory_hostname }}" # for identification via email, defaults to Ansible inventory name.
log_location: /var/log/clamav
send_mail: false # Important - will not send any emails by default.
send_on_fail: true # Only sends emails on scan failure, will not email for successful scans.
send_mail: false # Important - will not send any emails by default.
send_on_fail: true # Only sends emails on scan failure, will not email for successful scans.
report_recipient_email: mail@example.com
report_sender_email: admin@server.example.com
install_clamdscan: false # flag to install additional 'clamdscan' package
install_clamdscan: false # flag to install additional 'clamdscan' package
Loading