chiark / gitweb /
Some minor debianization fixes
[disorder] / debian / postinst.disorder-server
CommitLineData
460b9539 1#! /bin/sh
2#
3# This file is part of DisOrder
07184dd3 4# Copyright (C) 2004, 2007 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() {
43 echo "Checking whether guest user exists..."
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."
48 else
49 echo "Attempting to set up guest user..."
50 if disorder setup-guest; then
51 echo "Created guest user."
52 else
53 echo "Failed to create guest user."
54 echo "You can use 'disorder setup-guest' to do this step manually."
55 echo
56 fi
57 fi
58 else
59 echo "Cannot determine whether guest user has been set up."
60 echo
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
69 echo "Removing obsolete 'trust' directive from /etc/disorder/config"
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"
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
89case "$1" in
90configure )
91 if grep -q ^jukebox: /etc/passwd; then
92 :
93 else
94 add_jukebox_user
95 fi
460b9539 96 chown jukebox:jukebox /var/lib/disorder
97 configure_init_d
98 restart_server
f2c185d6
RK
99 fix_configuration
100 setup_guest
460b9539 101 db_stop
460b9539 102 ;;
103abort-upgrade )
104 /etc/init.d/disorder restart
105 ;;
106reconfigure )
107 /etc/init.d/disorder reload
108 ;;
109esac