File: prerm

package info (click to toggle)
nautilus-admin 0.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 212 kB
  • ctags: 18
  • sloc: python: 117; sh: 31; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 190 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
set -e

NOTIF_PATH=/var/lib/update-notifier/user.d/nautilus-admin-restart

case "$1" in
	remove)
	if [ -e $NOTIF_PATH ]; then
		rm -f $NOTIF_PATH
	fi
	;;
esac

#DEBHELPER#

exit 0