File: postinst

package info (click to toggle)
apt-listdifferences 1.20141011
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 136 kB
  • ctags: 1
  • sloc: python: 112; sh: 18; makefile: 9
file content (11 lines) | stat: -rw-r--r-- 221 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -e

. /usr/share/debconf/confmodule

if [ "$1" = "configure" ]; then
    db_get apt-listdifferences/initialize
    test "$RET" = "false" || test ! -z "$2" || apt-listdifferences --initialize
fi

#DEBHELPER#