1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

- The startup script checks the existance of

/usr/local/etc/xbms.conf.sample before starting the
  process. It is normal to rename the .sample scripts
  such as xbms.conf.sample -> xbms.conf.

PR:		57822
Submitted by:	Andrew Thompson <andy@fud.org.nz>
This commit is contained in:
Kirill Ponomarev 2003-10-10 06:56:17 +00:00
parent a7a15bac7f
commit be1c2bc0bf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=90766

View File

@ -10,7 +10,7 @@ name="xbms"
case "$1" in
start)
echo -n " xbms"
if [ -f /usr/local/etc/xbms.conf.sample ]; then
if [ -f /usr/local/etc/xbms.conf ]; then
/usr/local/bin/xbms
fi
;;