summaryrefslogtreecommitdiff
path: root/debian/mdadm.preinst
blob: 7bf524251a5e7f2f3d8a503d2c3e84027d6c031a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -eu
# Copyright © martin f. krafft <madduck@debian.org>
# Distributed under the terms of the Artistic Licence 2.0
#
# $Id$
#

# migrate old configuration from *way back then*
DEBIANCONFIG=/etc/default/mdadm
OLDCONFIG=/etc/mdadm/debian.conf
if [ -s $OLDCONFIG ] && [ ! -f $DEBIANCONFIG ]; then
  mv $OLDCONFIG $DEBIANCONFIG
fi

#DEBHELPER#