Date: Wed, 6 Feb 2013 21:56:49 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r311799 - in head/sysutils/boxbackup: . files Message-ID: <201302062156.r16LunBQ079667@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Wed Feb 6 21:56:48 2013 New Revision: 311799 URL: http://svnweb.freebsd.org/changeset/ports/311799 Log: - Fix rc scripts looking for their commands in the wrong place, broken since r280414 - Trim header PR: ports/175497 Reported by: thompsa@ Approved by: James O'Gorman <james@netinertia.co.uk> (maintainer) Modified: head/sysutils/boxbackup/Makefile head/sysutils/boxbackup/files/bbackupd.in head/sysutils/boxbackup/files/bbstored.in Modified: head/sysutils/boxbackup/Makefile ============================================================================== --- head/sysutils/boxbackup/Makefile Wed Feb 6 21:47:53 2013 (r311798) +++ head/sysutils/boxbackup/Makefile Wed Feb 6 21:56:48 2013 (r311799) @@ -1,13 +1,9 @@ -# New ports collection makefile for: boxbackup -# Date created: 19 December 2004 -# Whom: James O'Gorman <james@netinertia.co.uk> -# +# Created by: James O'Gorman <james@netinertia.co.uk> # $FreeBSD$ -# PORTNAME= boxbackup PORTVERSION= 0.11.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= SF PKGNAMESUFFIX= ${CLIENT_OR_SERVER} Modified: head/sysutils/boxbackup/files/bbackupd.in ============================================================================== --- head/sysutils/boxbackup/files/bbackupd.in Wed Feb 6 21:47:53 2013 (r311798) +++ head/sysutils/boxbackup/files/bbackupd.in Wed Feb 6 21:56:48 2013 (r311799) @@ -22,7 +22,7 @@ load_rc_config $name pidfile=${bbackupd_pidfile:-"/var/run/bbackupd.pid"} -command="%%PREFIX%%/bin/bbackupd" +command="%%PREFIX%%/sbin/bbackupd" extra_commands="reload" run_rc_command "$1" Modified: head/sysutils/boxbackup/files/bbstored.in ============================================================================== --- head/sysutils/boxbackup/files/bbstored.in Wed Feb 6 21:47:53 2013 (r311798) +++ head/sysutils/boxbackup/files/bbstored.in Wed Feb 6 21:56:48 2013 (r311799) @@ -22,7 +22,7 @@ load_rc_config $name pidfile=${bbstored_pidfile:-"/var/run/bbstored.pid"} -command="%%PREFIX%%/bin/bbstored" +command="%%PREFIX%%/sbin/bbstored" extra_commands="reload" run_rc_command "$1"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302062156.r16LunBQ079667>