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

# 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#