~davewalker/etherpad/ubuntu-full-width-default

« back to all changes in this revision

Viewing changes to debian/preinst

  • Committer: James Page
  • Date: 2011-04-13 09:59:22 UTC
  • Revision ID: james.page@canonical.com-20110413095922-hc7y32v3vk1wl2kd
* Removed debian/preinst: not required 
* Re-jigged dependencies to support removal of preinst.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
 
3
 
################################################################################
4
 
#
5
 
# Copyright (c) 2010 penSec.IT UG (haftungsbeschränkt)
6
 
#        http://www.pensec.it
7
 
#        mail@pensec.it
8
 
# Copyright (c) 2010 Egil Möller <egil.moller@piratpartiet.se>
9
 
10
 
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
11
 
# use this file except in compliance with the License. You may obtain a copy of
12
 
# the License at
13
 
14
 
#        http://www.apache.org/licenses/LICENSE-2.0
15
 
#
16
 
# Unless required by applicable law or agreed to in writing, software
17
 
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18
 
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
19
 
# License for the specific language governing permissions and limitations under
20
 
# the License. 
21
 
#
22
 
################################################################################
23
 
 
24
 
 
25
 
 
26
 
set -e
27
 
. /usr/share/debconf/confmodule
28
 
 
29
 
if [ -n "$ETHERPAD_DEBUG" ]; then
30
 
  echo "now debugging $0 $@"
31
 
  set -x
32
 
fi
33
 
 
34
 
db_version 2.0
35
 
 
36
 
#DEBHELPER#
37