1#!/bin/sh 2# 3# $NetBSD: fccache.in,v 1.2 2011/06/15 13:42:46 hans Exp $ 4# 5 6# PROVIDE: fccache 7# REQUIRE: mountcritremote 8# BEFORE: DAEMON 9 10$_rc_subr_loaded . /etc/rc.subr 11 12name="fccache" 13rcvar=${name} 14command="@X11ROOTDIR@/bin/fc-cache" 15start_cmd="fccache_start" 16stop_cmd=":" 17 18fccache_start() 19{ 20 if [ -x "${command}" ]; then 21 echo -n "Updating fontconfig cache:" 22 ${command} 23 echo " done" 24 fi 25} 26 27load_rc_config $name 28run_rc_command "$1" 29