File: postinst

package info (click to toggle)
dav-text 0.9.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 284 kB
  • sloc: ansic: 3,664; makefile: 27; sh: 10
file content (12 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
    update-alternatives --install /usr/bin/editor editor /usr/bin/dav 0 \
      --slave /usr/share/man/man1/editor.1.gz editor.1.gz \
      /usr/share/man/man1/dav.1.gz
fi

#DEBHELPER#