chiark / gitweb /
Add missing bits to scripts/setup, and teach it to install the CGI on
[disorder] / scripts / setup.in
CommitLineData
91370169
RK
1#! /bin/bash
2#
3# This file is part of DisOrder
4# Copyright (C) 2008 Richard Kettlewell
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14# General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19# USA
20#
21
22set -e
23
24echo
25echo ------------------------------------------------------------------------
26echo "DisOrder setup script"
27
28case $(uname -s) in
29Darwin )
30 os=mac
31 user=daemon
32 group=daemon
33 ;;
34* )
35 os=unknown
36 user=daemon
37 group=daemon
38 ;;
39esac
40
41echo
42echo "This script will:"
43echo " - overwrite any existing configuration"
44case $os in
45mac )
46 echo " - set the server up to be run at boot time"
47 echo " - start the server"
48 ;;
49esac
50echo
51echo "If this is not what you want, press ^C."
52echo ------------------------------------------------------------------------
53
54while :; do
55 echo
56 echo "What directory or directories contain your music files:"
57 echo "(enter one or more directories separated by spaces)"
58 read -r roots
59 ok=true
60 for root in $roots; do
61 if [ ! -d $root ]; then
62 echo "'$root' does not exist"
63 ok=false
64 fi
65 done
66 if $ok; then
67 break
68 fi
69done
70
71if [ -z "$encoding" ]; then
72 echo
73 echo "What filesystem encoding should I assume for track names?"
74 echo "(e.g. UTF-8, ISO-8859-1, ...)"
75 read -r encoding
76fi
77
78while :; do
79 echo
80 echo "What TCP port should DisOrder listen on?"
81 echo "(enter 'none' for none)"
82 read -r port
83 case $port in
84 none )
85 break
86 ;;
87 [^0-9] )
88 echo "'$port' is not a valid port number"
89 continue
90 ;;
91 * )
92 break
93 ;;
94 esac
95done
96
97echo
98echo "What host should DisOrder use as an SMTP server?"
99read -r smtp_server
100
101echo
102echo "What address should mail from DisOrder come from?"
103read -r mail_sender
104
105echo
106echo "Proposed DisOrder setup:"
107echo " Music directory: $roots"
108if [ $port = none ]; then
109 echo " Do not listen on a TCP port"
110else
111 echo " TCP port to listen on: $port"
112fi
113echo " SMTP Server: $smtp_server"
114echo " Sender address: $mail_sender"
115
116echo "Is this OK? (Enter 'y' or 'n')"
117read -r ok
118case $ok in
119y )
120 ;;
121* )
122 echo
123 echo "OK, didn't change anything."
124 exit 0
125 ;;
126esac
127
128mkdir -p pkgconfdir
129
130rm -f pkgconfdir/config.new
131for root in $roots; do
132 echo "collection fs $encoding $root" >> pkgconfdir/config.new
133done
134for scratch in slap.ogg scratch.ogg; do
135 echo "scratch pkgdatadir/$scratch" >> pkgconfdir/config.new
136done
137echo "user $user" >> pkgconfdir/config.new
138if [ $port != none ]; then
139 echo "listen 0.0.0.0 $port" >> pkgconfdir/config.new
140fi
919c5c40
RK
141echo "smtp_server $smtp_server" >> pkgconfdir/config.new
142echo "mail_sender $mail_sender" >> pkgconfdir/config.new
91370169
RK
143
144echo
145echo "Proposed pkgconfdir/config:"
146sed < pkgconfdir/config.new 's/^/ /'
147echo
148echo "Is this OK? (Enter 'y' or 'n')"
149read -r ok
150case $ok in
151y )
152 ;;
153* )
154 echo
155 echo "OK, not installing it."
156 rm -f pkgconfdir/config.new
157 exit 0
158 ;;
159esac
160echo
161echo "Installing pkgconfdir/config"
162mv pkgconfdir/config.new pkgconfdir/config
163
919c5c40
RK
164if [ ! -f pkgconfdir/options.user ]; then
165 echo "Making sure pkgconfdir/options.user exists"
166 touch pkgconfdir/options.user
167fi
168
91370169
RK
169echo "Making sure that pkgstatedir exists"
170mkdir -p pkgstatedir
171chown $user:$group pkgstatedir
172chmod 2755 pkgstatedir
173
174case $os in
175mac )
176 echo "Installing the plist into /Library/LaunchDaemons/"
177 cp server/uk.org.greenend.rjk.disorder.plist /Library/LaunchDaemons/.
178 echo "Reloading launchd"
179 launchctl load /Library/LaunchDaemons
180 echo "Starting DisOrder server"
181 launchctl start uk.org.greenend.rjk.disorder
919c5c40
RK
182 echo "Installing CGI"
183 install -m 555 server/disorder.cgi /Library/WebServer/CGI-Executables/disorder
184 echo "Setting up link to CGI resources"
185 rm /etc/httpd/users/disorder.conf.new
186 echo Alias /disorder/ pkgdatadir/static/ >> /etc/httpd/users/disorder.conf.new
187 mv /etc/httpd/users/disorder.conf.new /etc/httpd/users/disorder.conf
188 echo "Reloading web server"
189 sudo apachectl graceful
190 echo
191 echo "You must sudo disorder setup-guest [--no-online-registration] next."
91370169
RK
192 ;;
193* )
194 echo "Sorry, I don't know how to install the server on this platform."
195 echo "You will have to do that by hand."
196 exit 1
197 ;;
198esac