Your IP : 216.73.216.189


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : /var/lib/dpkg/info/snmpd.preinst

#!/bin/sh

set -e

action="$1"
version="$2"

if [ "$action" = upgrade ]
then
  if [ -L /usr/share/doc/snmpd ]; then
    rm -f /usr/share/doc/snmpd
  fi
fi



exit 0