amidxtaped needs to go in the server package
[debian/amanda] / debian / preinst
1 #!/bin/sh -e
2
3 # if a .amandahosts exists and is not a symlink, move it to /etc
4 if [ ! -L ~backup/.amandahosts ]
5 then
6         if [ -f ~backup/.amandahosts ]
7         then
8                 mv -f ~backup/.amandahosts /etc/amandahosts
9         fi
10 fi
11
12 #DEBHELPER#