postinst is in csh 20110502-3.
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 | #!/bin/sh
set -e
if [ "$1" = configure ]; then
update-alternatives --install /bin/csh csh /bin/bsd-csh 30 \
--slave /usr/share/man/man1/csh.1.gz csh.1.gz \
/usr/share/man/man1/bsd-csh.1.gz
if which add-shell >/dev/null 2>&1; then
add-shell /bin/csh
fi
fi
# Automatically added by dh_installmenu/10.7.2ubuntu2
if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
update-menus
fi
# End automatically added section
|