summaryrefslogtreecommitdiff
path: root/audio/icecast/doinst.sh
diff options
context:
space:
mode:
authorRodney Cobb <rdc@ktabic.co.uk>2010-05-12 23:27:54 +0200
committerRobby Workman <rworkman@slackbuilds.org>2010-05-12 23:27:54 +0200
commita49491457fb57acf19991f09c8751a8ac6848401 (patch)
treefa13e8450ccc4954ff3f9c211630831cbd0212a6 /audio/icecast/doinst.sh
parentd1afb5c3c1615e5bfc3f8305ac513481c0398df8 (diff)
downloadslackbuilds-a49491457fb57acf19991f09c8751a8ac6848401.tar.gz
audio/icecast: Added to 12.2 repository
Diffstat (limited to 'audio/icecast/doinst.sh')
-rw-r--r--audio/icecast/doinst.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/audio/icecast/doinst.sh b/audio/icecast/doinst.sh
new file mode 100644
index 0000000000..88d4c0e358
--- /dev/null
+++ b/audio/icecast/doinst.sh
@@ -0,0 +1,19 @@
+config() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ # If there's no config file by that name, mv it over:
+ if [ ! -r $OLD ]; then
+ mv $NEW $OLD
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
+ # toss the redundant copy
+ rm $NEW
+ fi
+ # Otherwise, we leave the .new copy for the admin to consider...
+}
+
+config etc/icecast.xml.new
+
+# Create log files if they don't exist already
+[ ! -e var/log/icecast/access.log ] && touch var/log/icecast/access.log
+[ ! -e var/log/icecast/error.log ] && touch var/log/icecast/error.log
+