From 2f92cc0aa47df7819d869c5f778eb2ac6356f0c2 Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Thu, 21 Apr 2005 20:05:53 +0000 Subject: Improve the upgrade process a bit. It was previously possible for the log file to be owned by root because most files were opened/created before the uid was switched to non-root. That's not the case anymore so we need to be sure those files are owned by slimserv:slimserv. This isn't a problem with new installed because they are made correctly in the rc script, but on upgrades it may be an issue. Handle this by resetting the permissions of existing files and directories during the install. While I'm here, remove some leftover directory creation. It properly belongs in the startup script so the files will be created if /var is clear. Bump port revision. --- audio/squeezeboxserver/files/pkg-install.in | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) (limited to 'audio/squeezeboxserver/files') diff --git a/audio/squeezeboxserver/files/pkg-install.in b/audio/squeezeboxserver/files/pkg-install.in index a210354f5677..ef9c47ecbd6b 100644 --- a/audio/squeezeboxserver/files/pkg-install.in +++ b/audio/squeezeboxserver/files/pkg-install.in @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/audio/squeezeboxserver/files/pkg-install.in,v 1.1 2005-04-21 05:17:02 brooks Exp $ +# $FreeBSD: /tmp/pcvs/ports/audio/squeezeboxserver/files/pkg-install.in,v 1.2 2005-04-21 20:05:53 brooks Exp $ name=slimserver u=slimserv @@ -11,6 +11,7 @@ comment="Slim Devices SlimServer pseudo-user" slimdir="%%PREFIX%%/%%SLIMDIR%%" statedir=/var/db/slimserver cachedir=${statedir}/cache +conffile=${statedir}/slimserver.conf playlistdir=${statedir}/playlists pidfile=/var/run/${name}.pid newsyslogfile=/etc/newsyslog.conf @@ -43,18 +44,24 @@ PRE-INSTALL) fi ;; POST-INSTALL) - if [ ! -d ${statedir} ]; then - mkdir -p ${statedir} + if [ -d ${statedir} ]; then chown -R ${u}:${g} ${statedir} fi - if [ ! -d ${cachedir} ]; then - mkdir -p ${cachedir} + if [ -d ${cachedir} ]; then chown -R ${u}:${g} ${cachedir} fi - if [ ! -d ${playlistdir} ]; then - mkdir -p ${playlistdir} + if [ -d ${playlistdir} ]; then chown -R ${u}:${g} ${playlistdir} fi + if [ -d /var/run/slimserver ]; then + chown -R ${u}:${g} /var/run/slimserver + fi + if [ -f ${conffile} ]; then + chown ${u}:${g} ${conffile} + fi + if [ -f ${logfile} ]; then + chown ${u}:${g} ${logfile} + fi if egrep -q "^${logfile}\>" ${newsyslogfile}; then echo "Using existing ${newsyslogfile} entry." else -- cgit v1.2.3