You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. Review and edit your Anacron file, which contains the following information:
56
58
57
59
```shell
58
60
# /etc/anacrontab: configuration file for anacron
@@ -65,19 +67,24 @@ Use the following steps to schedule scans:
65
67
# delay will be 5 minutes + RANDOM_DELAY for cron.daily
66
68
```
67
69
68
-
1. Note the following items in the file.
69
-
1.**Shell:** Shell is referred as `/bin/sh`, and not as `/bin/bash`. Remember when writing the jobs.
70
-
1.**RANDOM_DELAY:** Describes the maximum time in minutes for the job. This value is used to offset the jobs so there wouldn't be too many jobs running at the same time. Using this delay is ideal for VDI solutions.
71
-
1.**START_HOURS_RANGE:** Describes the time range to run the job.
72
-
1.**cron.daily:** Describes 1 as the period of days required for the frequency of job executions. 5 is the delay in minutes that anacron waits after the device restarts.
70
+
Notice the following items in the file:
71
+
72
+
-**Shell** is referred as `/bin/sh`, and not as `/bin/bash`. Remember this when you're configuring jobs.
73
+
-**RANDOM_DELAY** describes the maximum time in minutes for the job. This value is used to offset the jobs so there aren't be too many jobs running at the same time. Using this delay is ideal for VDI solutions.
74
+
-**START_HOURS_RANGE** describes the time range to run the job.
75
+
-**cron.daily** describes `1` as the period of days required for the frequency of job executions. `5 is the delay in minutes that anacron waits after the device restarts.
73
76
74
-
1. Review look at the anacron jobs:
77
+
4. Review your anacron jobs by using the following command:
0 commit comments