#!/bin/sh
#
# $NetBSD: fccache.in,v 1.3 2012/02/07 10:36:01 mbalmer Exp $
#

# PROVIDE: fccache 
# REQUIRE: mountcritremote
# BEFORE:  DAEMON

$_rc_subr_loaded . /etc/rc.subr

name="fccache"
rcvar=${name}
command="/usr/X11R7/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"
