File: postinst

package info (click to toggle)
dav-text 0.9.0-2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 240 kB
  • sloc: ansic: 2,895; makefile: 29; 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#