1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-29 01:45:34 +00:00
elinks/debian/elinks.preinst
Petr Baudis 0f6d4310ad Initial commit of the HEAD branch of the ELinks CVS repository, as of
Thu Sep 15 15:57:07 CEST 2005. The previous history can be added to this
by grafting.
2005-09-15 15:58:31 +02:00

20 lines
374 B
Bash

#!/bin/sh
#
# elinks preinst file
#
# check whether we have the config in the old place and not in the new place
#
if [ -f /etc/elinks.conf -a ! -f /etc/elinks/elinks.conf ]; then
# move the file into the new location
#
mkdir -p /etc/elinks/
mv /etc/elinks.conf /etc/elinks/elinks.conf
echo "Your /etc/elinks.conf moved into /etc/elinks/."
fi
#DEBCONF#
#DEBHELPER#