File: postinst

package info (click to toggle)
apt-listdifferences 1.20230122
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 152 kB
  • sloc: python: 118; sh: 18; makefile: 11
file content (12 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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#