29 lines
443 B
Bash
Executable File
29 lines
443 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: fccache.in,v 1.5 2021/11/26 12:51:24 sborrill Exp $
|
|
#
|
|
|
|
# PROVIDE: fccache
|
|
# REQUIRE: mountcritremote
|
|
# BEFORE: DAEMON
|
|
|
|
$_rc_subr_loaded . /etc/rc.subr
|
|
|
|
name="fccache"
|
|
rcvar=$name
|
|
command="@X11ROOTDIR@/bin/fc-cache"
|
|
start_cmd="fccache_start"
|
|
stop_cmd=":"
|
|
|
|
fccache_start()
|
|
{
|
|
if [ -x "${command}" ]; then
|
|
echo -n "Updating fontconfig cache:"
|
|
${command}
|
|
echo " done."
|
|
fi
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|