Codebase list slay / a85b0ba8-0071-4347-adff-fe953278cbb0/main debian / postinst
a85b0ba8-0071-4347-adff-fe953278cbb0/main

Tree @a85b0ba8-0071-4347-adff-fe953278cbb0/main (Download .tar.gz)

postinst @a85b0ba8-0071-4347-adff-fe953278cbb0/mainraw · history · blame

#!/bin/sh

set -e

# Source debconf library.
. /usr/share/debconf/confmodule

# Build config file based on answers... IF NECESSARY ONLY
if test -n "$2"
then
 if dpkg --compare-versions $2 lt 1.2.7 || test ! -e /etc/slay_mode
 then

  db_get slay/punish
  if [ "$RET" = "true" ]
  then
   echo "mean" > /etc/slay_mode
  else
   echo "nice" > /etc/slay_mode
  fi

  db_get slay/butthead
  if [ "$RET" = "true" ]
  then
   echo "butthead" >> /etc/slay_mode
  else
   echo "normal" >> /etc/slay_mode
  fi

 fi
fi
# (yes, I know this was ugly)

#DEBHELPER#