View | Details | Raw Unified | Return to bug 143953
Collapse All | Expand All

(-)ratbox-services/Makefile (-2 / +1 lines)
Lines 5-12 Link Here
5
# $FreeBSD: ports/irc/ratbox-services/Makefile,v 1.10 2009/06/16 21:09:33 itetcu Exp $
5
# $FreeBSD: ports/irc/ratbox-services/Makefile,v 1.10 2009/06/16 21:09:33 itetcu Exp $
6
6
7
PORTNAME=	ratbox-services
7
PORTNAME=	ratbox-services
8
PORTVERSION=	1.2.1
8
PORTVERSION=	1.2.2
9
PORTREVISION=	1
10
CATEGORIES=	irc
9
CATEGORIES=	irc
11
MASTER_SITES=	ftp://ftp.ircd-ratbox.org/pub/ircd-ratbox/${PORTNAME}/	\
10
MASTER_SITES=	ftp://ftp.ircd-ratbox.org/pub/ircd-ratbox/${PORTNAME}/	\
12
		ftp://ftp.demon.co.uk/pub/mirrors/ircd-ratbox/${PORTNAME}/ \
11
		ftp://ftp.demon.co.uk/pub/mirrors/ircd-ratbox/${PORTNAME}/ \
(-)ratbox-services/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (ratbox-services-1.2.1.tgz) = 2db526a3d42bfdccf150666ffb335283
1
MD5 (ratbox-services-1.2.2.tgz) = b7524738f0e7ff4a3ae9f2015231a87a
2
SHA256 (ratbox-services-1.2.1.tgz) = 1753ecfe40938ea4f3761bb6131f5b88674c96d03db44bab1e5282909faf6b03
2
SHA256 (ratbox-services-1.2.2.tgz) = 587ad0eecd130b2fb214384fa37beb43de5e31b40ed56371fbf25c1263d715bd
3
SIZE (ratbox-services-1.2.1.tgz) = 2000652
3
SIZE (ratbox-services-1.2.2.tgz) = 2010045
(-)ratbox-services/files/pkg-install.in (-4 / +8 lines)
Lines 106-115 Link Here
106
&& chmod 750 %%DBDIR%%
106
&& chmod 750 %%DBDIR%%
107
107
108
# Secure permissions if we think this is a fresh install
108
# Secure permissions if we think this is a fresh install
109
109
conffile="%%PREFIX%%/etc/ratbox-services.conf"
110
if [ ! -f ${PKG_PREFIX}/ratbox-services.conf ]; then
110
samplefile="%%PREFIX%%/etc/ratbox-services.conf.sample"
111
	chown ircservices:ircservices ${PKG_PREFIX}/etc/ratbox-services.conf.sample
111
if cmp -s $conffile $samplefile; then
112
	chmod 640 ${PKG_PREFIX}/etc/ratbox-services.conf.sample
112
        echo "Setting permissions for config file."
113
        chown ircservices:ircservices $conffile
114
        chmod 640 $conffile
115
else
116
        echo "Modified ratbox-services.conf file found, skipping perms setting."
113
fi
117
fi
114
118
115
cd %%DATADIR%%	\
119
cd %%DATADIR%%	\
(-)ratbox-services/files/pkg-message.in (-4 / +4 lines)
Lines 46-57 Link Here
46
46
47
Important UPGRADE Note:
47
Important UPGRADE Note:
48
-----------------------
48
-----------------------
49
Upgrading to this current release will require modifications to the
49
Upgrading from 1.1.x to this current release will require modifications to
50
services configuration file and database so everything doesn't break.
50
the services configuration file and database so everything doesn't break.
51
You must check the example configuration file and read the UPDATING docs
51
You must check the example configuration file and read the UPGRADING docs
52
for information on how to do this before starting services.
52
for information on how to do this before starting services.
53
53
54
	%%DOCSDIR%%/UPDATING
54
	%%DOCSDIR%%/UPGRADING
55
55
56
Common database update tools and scripts referenced in ratbox-services
56
Common database update tools and scripts referenced in ratbox-services
57
documentation can be found in:
57
documentation can be found in:

Return to bug 143953