Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > media > contrib > by-pkgid > 6dad36cb60e267f82fe69d929f7a4a46 > files > 1

vanilla-2.9pl7-2mdk.i586.rpm

#!/bin/bash

confirm=`grep CONFIRM /usr/games/vanilla/.sysdef`

#
# Should ALWAYS be in there, but check just in case
#
if [ $? -ne 0 ]; then
  exit 0
fi

#
# What is the value of CONFIRM?
#
num=`echo $confirm | cut -d '=' -f2`
if [ $? -ne 0 ]; then
  exit 0
fi

if [ $num -gt 0 ]; then
  su -c "/usr/games/vanilla/tools/updatekeys" - games
fi

exit 0