diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2003-10-10 06:56:17 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2003-10-10 06:56:17 +0000 |
commit | be1c2bc0bff2ae7302542878db30e4dbb73b5eca (patch) | |
tree | f52b2cae1cde85b02d0f3fb2cc797e230d78e37b /net/xbms/files | |
parent | Correct the explanations on using the BPF functionality on FreeBSD. (diff) |
- 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>
Notes
Notes:
svn path=/head/; revision=90766
Diffstat (limited to 'net/xbms/files')
-rw-r--r-- | net/xbms/files/xbms.sh.sample | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/xbms/files/xbms.sh.sample b/net/xbms/files/xbms.sh.sample index 4cee985339ab..dd1105ec56bf 100644 --- a/net/xbms/files/xbms.sh.sample +++ b/net/xbms/files/xbms.sh.sample @@ -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 ;; |