File: postinst

package info (click to toggle)
nautilus-compare 1.0.2-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 172 kB
  • sloc: python: 295; sh: 20; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 306 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# postinst script for nautilus-compare
#
# see: dh_installdeb(1)

set -e

unud=/var/lib/update-notifier/user.d

if [ -d $unud ]; then
	cp /usr/share/nautilus-compare/nautilus-compare-notification \
		/var/lib/update-notifier/user.d/
	touch /var/lib/update-notifier/dpkg-run-stamp
fi

#DEBHELPER#