15 lines
574 B
SYSTEMD
15 lines
574 B
SYSTEMD
|
|
# kb-ingest.timer — module 5 phase 3 step 5 (docs/kb/modules/05-faza3-plan.md §7.1).
|
||
|
|
# Daily at 03:30, not hourly: the plan fixes this schedule explicitly (low-traffic window,
|
||
|
|
# and the underlying jobs are full-corpus re-scans each tick — cheap at 186 documents
|
||
|
|
# today, but daily keeps headroom as the corpus grows). Persistent=true catches up after a
|
||
|
|
# PIHA reboot instead of silently skipping the day's run.
|
||
|
|
[Unit]
|
||
|
|
Description=Run kb-ingest.service daily (module 5 phase 3 step 5)
|
||
|
|
|
||
|
|
[Timer]
|
||
|
|
OnCalendar=*-*-* 03:30:00
|
||
|
|
Persistent=true
|
||
|
|
|
||
|
|
[Install]
|
||
|
|
WantedBy=timers.target
|