| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/x11-fonts/xfs/files/ |
Upload File : |
#!/bin/sh
# PROVIDE: xfs
# REQUIRE: cleartmp ldconfig
# BEFORE: LOGIN
# The following variables are provided to control startup of X font server in
# rc configuration file (eg /etc/rc.conf):
# xfs_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable X font server
# xfs_config (str): Set to "%%PREFIX%%/etc/X11/fs/config" by default.
# Configuration file for X font server.
#
# Please see xfs(1), rc.conf(5) and rc(8) for further details.
. /etc/rc.subr
name="xfs"
rcvar=xfs_enable
# Set defaults
[ -z "$xfs_enable" ] && xfs_enable="NO"
[ -z "$xfs_config" ] && xfs_config="%%PREFIX%%/etc/X11/fs/config"
load_rc_config $name
command="%%PREFIX%%/bin/${name}"
command_args="-config ${xfs_config} -daemon ${xfs_user:+-user ${xfs_user}}"
required_files="$xfs_config"
extra_commands="reload"
unset xfs_user
run_rc_command "$1"