preinst is in samba-libs 2:4.7.6+dfsg~ubuntu-0ubuntu2.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | #!/bin/sh
#
#
set -e
# Move files to private subdir now fhs patch is finally gone
if [ "$1" = "install" ]
then
for file in passdb.tdb secrets.tdb schannel_store.tdb idmap2.tdb
do
if [ -e /var/lib/samba/$file ]
then
if [ -e /var/lib/samba/private/$file ] &&
[ ! /var/lib/samba/$file -ef /var/lib/samba/private/$file ]
then
echo $file exists in /var/lib/samba and /var/lib/samba/private, aborting samba-libs preinst
echo rename one of them to allow the install/upgrade to continue
echo http://bugs.debian.org/726472
ls -al /var/lib/samba /var/lib/samba/private
exit 1
fi
fi
done
for file in passdb.tdb secrets.tdb schannel_store.tdb idmap2.tdb
do
if [ -e /var/lib/samba/$file ]
then
if ! [ -e /var/lib/samba/private/$file ]
then
if [ ! -d /var/lib/samba/private ]
then
mkdir /var/lib/samba/private
fi
mv /var/lib/samba/$file /var/lib/samba/private/$file
ln /var/lib/samba/private/$file /var/lib/samba/$file
fi
fi
done
fi
exit 0
|