~ubuntu-branches/ubuntu/quantal/elinks/quantal

« back to all changes in this revision

Viewing changes to debian/elinks-lite.preinst

  • Committer: Bazaar Package Importer
  • Author(s): Siegfried-Angel Gevatter Pujals (RainCT)
  • Date: 2008-02-01 16:29:06 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080201162906-xdourui5tyjva0al
Tags: 0.11.3-5ubuntu1
 
* Merge from Debian unstable (LP: #187936); remaining changes:
  - Add X-Ubuntu-Gettext-Domain to .desktop files.
  - debian/control: Maintainer field update.
* Improve the text in the .desktop file and add some translations.
 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
#
3
 
# elinks preinst file
4
 
#
5
 
 
6
 
# check whether we have the config in the old place and not in the new place
7
 
#
8
 
 
9
 
 
10
 
if [ -f /etc/elinks.conf -a ! -f /etc/elinks/elinks.conf ]; then
11
 
        # move the file into the new location
12
 
        #
13
 
        mkdir -p /etc/elinks/
14
 
        mv /etc/elinks.conf /etc/elinks/elinks.conf
15
 
        echo "Your /etc/elinks.conf moved into /etc/elinks/."
16
 
fi
17
 
 
18
 
#DEBCONF#
19
 
#DEBHELPER#