You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/man-db/files/man-db.cron-r1

12 lines
252 B

#!/bin/sh
# Use same perms/settings as the ebuild.
cachedir="/var/cache/man"
if [ ! -d "${cachedir}" ]; then
mkdir -p "${cachedir}"
chown man:man "${cachedir}"
chmod 0755 "${cachedir}"
fi
exec su man -s /bin/sh -c 'nice mandb --quiet' 2>/dev/null