summaryrefslogtreecommitdiffstats
path: root/init/systemd/man-db.service.in
blob: 25be57d9567ea3d97d746d98caf14220afc7be6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[Unit]
Description=Daily man-db regeneration
Documentation=man:mandb(8)
ConditionACPower=true

[Service]
Type=oneshot
# Recover from deletion, per FHS.
ExecStart=+/usr/bin/install -d -o @cache_top_owner@ -g @cache_top_owner@ -m 0755 /var/cache/man
# Expunge old catman pages which have not been read in a week.
ExecStart=/usr/bin/find /var/cache/man -type f -name *.gz -atime +6 -delete
# Regenerate man database.
ExecStart=@bindir@/mandb
User=@cache_top_owner@
Nice=19
IOSchedulingClass=idle
IOSchedulingPriority=7