File: postinst

package info (click to toggle)
ed 0.2-17
  • links: PTS
  • area: main
  • in suites: slink
  • size: 1,548 kB
  • ctags: 704
  • sloc: ansic: 7,316; makefile: 201; sh: 179
file content (13 lines) | stat: -rw-r--r-- 313 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

case "$1" in
       configure|abort-upgrade|abort-remove|abort-deconfigure)
               #
               #       Install the info documentation
               #
	       install-info --section "General commands" "General commands" \
			    --quiet /usr/info/ed.info.gz
               ;;
esac