File: tasksel-data.postinst

package info (click to toggle)
tasksel 3.31%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 8,156 kB
  • ctags: 57
  • sloc: perl: 690; sh: 213; makefile: 127
file content (12 lines) | stat: -rw-r--r-- 325 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e
#DEBHELPER#

# directory turned into symlink; give dpkg a hand.
if dpkg --compare-versions "$2" lt 3.14; then
	if [ ! -L /usr/share/doc/tasksel-data ] && \
	   [ -d /usr/share/doc/tasksel-data ] && \
	   rmdir /usr/share/doc/tasksel-data 2>/dev/null; then
		ln -sf tasksel /usr/share/doc/tasksel-data
	fi
fi