chiark / gitweb /
exercise make_home()
[disorder] / debian / postinst.disorder-server
CommitLineData
460b9539 1#! /bin/sh
2#
3# This file is part of DisOrder
1c934d2a 4# Copyright (C) 2004, 2007, 2008 Richard Kettlewell
460b9539 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
24. /usr/share/debconf/confmodule
25
26add_jukebox_user() {
27 adduser --quiet --system --group --shell /bin/sh --home /var/lib/disorder \
28 --no-create-home jukebox
29}
30
31configure_init_d() {
32 update-rc.d disorder defaults 92 19 > /dev/null
33}
34
35restart_server() {
36 /etc/init.d/disorder restart
f2c185d6
RK
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
42setup_guest() {
1c934d2a 43 echo "Checking whether guest user exists..." >&2
f2c185d6
RK
44 TMPFILE="$(mktemp -t)"
45 if disorder users > "$TMPFILE"; then
46 if grep -q '^guest$' "$TMPFILE"; then
1c934d2a 47 echo "Guest user has already been set up." >&2
f2c185d6 48 else
1c934d2a 49 echo "Attempting to set up guest user..." >&2
f2c185d6 50 if disorder setup-guest; then
1c934d2a 51 echo "Created guest user." >&2
f2c185d6 52 else
1c934d2a
RK
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
f2c185d6
RK
56 fi
57 fi
58 else
1c934d2a
RK
59 echo "Cannot determine whether guest user has been set up." >&2
60 echo >&2
f2c185d6
RK
61 fi
62 rm -f "$TMPFILE"
63}
64
65fix_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
1c934d2a 69 echo "Removing obsolete 'trust' directive from /etc/disorder/config" >&2
f2c185d6
RK
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
1c934d2a 77 echo "Removing obsolete 'allow' directive(s) from /etc/disorder/config.private" >&2
f2c185d6
RK
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
460b9539 87}
88
1c934d2a
RK
89# Create configuration from debconf answers
90create_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
117EOF
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
460b9539 158case "$1" in
159configure )
160 if grep -q ^jukebox: /etc/passwd; then
161 :
162 else
163 add_jukebox_user
164 fi
460b9539 165 chown jukebox:jukebox /var/lib/disorder
166 configure_init_d
1c934d2a 167 create_config
460b9539 168 restart_server
f2c185d6
RK
169 fix_configuration
170 setup_guest
1c934d2a
RK
171 ;;
172reconfigure )
173 create_config
460b9539 174 ;;
175abort-upgrade )
176 /etc/init.d/disorder restart
177 ;;
178reconfigure )
179 /etc/init.d/disorder reload
180 ;;
181esac
1c934d2a
RK
182
183db_stop