summaryrefslogtreecommitdiff
path: root/audio/squeezeboxserver/files/pkg-install.in
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2005-04-21 20:05:53 +0000
committerBrooks Davis <brooks@FreeBSD.org>2005-04-21 20:05:53 +0000
commit2f92cc0aa47df7819d869c5f778eb2ac6356f0c2 (patch)
tree7b7d35a7ec47965f440849ddc1655de1f57bb1dc /audio/squeezeboxserver/files/pkg-install.in
parentUpdate libksba to version 0.9.11. (diff)
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.
Notes
Notes: svn path=/head/; revision=133888
Diffstat (limited to 'audio/squeezeboxserver/files/pkg-install.in')
-rw-r--r--audio/squeezeboxserver/files/pkg-install.in21
1 files changed, 14 insertions, 7 deletions
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