root/trunk/pdns/debian/prerm @ 47

Revision 47, 169 bytes (checked in by ahu, 10 years ago)

juh

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to author date id revision
Line 
1#!/bin/sh
2
3
4set -e
5
6update_docbase() {
7        if command -v install-docs >/dev/null 2>&1 ; then
8                install-docs -r pdns
9        fi
10}
11
12if [ "$1" = "remove" ] ; then
13        update_docbase
14fi
Note: See TracBrowser for help on using the browser.