chiark / gitweb /
Bring CGI docs pretty much up to date
[disorder] / debian / postinst.disorder-server
1 #! /bin/sh
2 #
3 # This file is part of DisOrder
4 # Copyright (C) 2004, 2007, 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
22 set -e
23
24 . /usr/share/debconf/confmodule
25
26 add_jukebox_user() {
27   adduser --quiet --system --group --shell /bin/sh --home /var/lib/disorder \
28     --no-create-home jukebox
29 }
30
31 configure_init_d() {
32   update-rc.d disorder defaults 92 19 > /dev/null
33 }
34
35 restart_server() {
36   /etc/init.d/disorder restart
37   # Wait for the server to get going.  This is a horrid bodge and ought
38   # to be done away with, but is required for the time being.  Sorry.
39   sleep 5
40 }
41
42 setup_guest() {
43   echo "Checking whether guest user exists..." >&2
44   TMPFILE="$(mktemp -t)"
45   if disorder users > "$TMPFILE"; then
46     if grep -q '^guest$' "$TMPFILE"; then
47       echo "Guest user has already been set up." >&2
48     else
49       echo "Attempting to set up guest user..." >&2
50       if disorder setup-guest; then
51         echo "Created guest user." >&2
52       else
53         echo "Failed to create guest user." >&2
54         echo "You can use 'disorder setup-guest' to do this step manually." >&2
55         echo >&2
56       fi
57     fi
58   else
59     echo "Cannot determine whether guest user has been set up." >&2
60     echo >&2
61   fi
62   rm -f "$TMPFILE"
63 }
64
65 fix_configuration() {
66   # Once the server has started up, we can remove some of the obsolete
67   # directives from the config file.
68   if grep -q ^trust /etc/disorder/config; then
69     echo "Removing obsolete 'trust' directive from /etc/disorder/config" >&2
70     sed < /etc/disorder/config > /etc/disorder/config.new \
71         's/^trust/#trust/'
72     chmod 644 /etc/disorder/config.new
73     mv /etc/disorder/config.new /etc/disorder/config
74   fi
75   if test -e /etc/disorder/config.private \
76       && grep -q ^allow /etc/disorder/config.private; then
77     echo "Removing obsolete 'allow' directive(s) from /etc/disorder/config.private" >&2
78     u=$(umask)
79     umask 077
80     sed < /etc/disorder/config.private > /etc/disorder/config.private.new \
81         's/^allow/#allow/'
82     umask $u
83     chmod 640 /etc/disorder/config.private.new
84     chown root:jukebox /etc/disorder/config.private.new
85     mv /etc/disorder/config.private.new /etc/disorder/config.private
86   fi
87 }
88
89 # Create configuration from debconf answers
90 create_config() {
91   db_get disorder/roots || true
92   roots="$RET"
93   db_get disorder/scratches || true
94   scratches="$RET"
95   db_get disorder/encoding || true
96   encoding="$RET"
97   db_get disorder/port || true
98   port="$RET"
99   db_get disorder/smtp_server || true
100   smtp_server="$RET"
101   db_get disorder/mail_sender || true
102   mail_sender="$RET"
103   db_get disorder/interface || true
104   interface="$RET"
105   if test "x$interface" = xnetwork; then
106     db_get disorder/mcast_address || true
107     mcast_address="$RET"
108     db_get disorder/mcast_port || true
109     mcast_port="$RET"
110   fi
111
112   mkdir -p /etc/disorder
113   cat > /etc/disorder/conf.debconf.new <<EOF
114 # created automatically from debconf information
115 # do not edit manually
116 # run 'dpkg-reconfigure disorder' instead
117 EOF
118
119   echo >> /etc/disorder/conf.debconf.new
120   echo "# Collection roots"  >> /etc/disorder/conf.debconf.new
121   for r in $roots; do
122     echo "collection fs $encoding $r" >> /etc/disorder/conf.debconf.new
123   done
124
125   echo >> /etc/disorder/conf.debconf.new
126   echo "# Scratches" >> /etc/disorder/conf.debconf.new
127   for s in $scratches; do
128     echo "scratch $s" >> /etc/disorder/conf.debconf.new
129   done
130
131   if test "$mail_sender" != ""; then
132     echo "" >> /etc/disorder/conf.debconf.new
133     echo "# SMTP server" >> /etc/disorder/conf.debconf.new
134     echo "smtp_server $smtp_server" >> /etc/disorder/conf.debconf.new
135   fi
136
137   if test "$mail_sender" != ""; then
138     echo "" >> /etc/disorder/conf.debconf.new
139     echo "# Source mail address" >> /etc/disorder/conf.debconf.new
140     echo "mail_sender $mail_sender" >> /etc/disorder/conf.debconf.new
141   fi
142
143   if test "$port" != none && test "$port" != ""; then
144     echo >> /etc/disorder/conf.debconf.new
145     echo "# Listen for remote clients" >> /etc/disorder/conf.debconf.new
146     echo "listen 0.0.0.0 $port" >> /etc/disorder/conf.debconf.new
147   fi
148
149   if test "x$interface" = xnetwork; then
150     echo "" >> /etc/disorder/conf.debconf.new
151     echo "# Target address for RTP frames" >> /etc/disorder/conf.debconf.new
152     echo "broadcast $mcast_address $mcast_port" >> /etc/disorder/conf.debconf.new
153   fi
154
155   mv /etc/disorder/conf.debconf.new /etc/disorder/conf.debconf
156 }
157
158 case "$1" in
159 configure )
160   if grep -q ^jukebox: /etc/passwd; then
161     :
162   else
163     add_jukebox_user
164   fi
165   chown jukebox:jukebox /var/lib/disorder
166   configure_init_d
167   create_config
168   restart_server
169   fix_configuration
170   setup_guest
171   ;;
172 reconfigure )
173   create_config
174   ;;
175 abort-upgrade )
176   /etc/init.d/disorder restart
177   ;;
178 reconfigure )
179   /etc/init.d/disorder reload
180   ;;
181 esac
182
183 db_stop