Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lynis.timer « systemd « extras - github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83f5c1442835ee7d1a6f4eadbdce0492e8bec8a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#################################################################################
#
# Lynis timer file for systemd
#
#################################################################################
#
# - Place this file together with the lynis.service file in the related
#   systemd directory (e.g. /etc/systemd/system)
#
# - Tell systemd you made changes
#   systemctl daemon-reload
#
# - Enable and start the timer (so no reboot is needed):
#   systemctl enable --now lynis.timer
#
#################################################################################

[Unit]
Description=Daily timer for the Lynis security audit and vulnerability scanner

[Timer]
OnCalendar=daily
RandomizedDelaySec=1800
Persistent=false

[Install]
WantedBy=timers.target

#EOF