File: postinst

package info (click to toggle)
invaders 1.0.0-8
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 176 kB
  • ctags: 192
  • sloc: ansic: 678; sh: 70; makefile: 39; asm: 28
file content (13 lines) | stat: -rw-r--r-- 172 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

rm -f /etc/grub.d/20_invaders

if [ "$1" = "configure" ] && [ -x "`which update-grub2 2>/dev/null`" ]; then
        update-grub2
fi

#DEBHELPER#

exit 0