home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh -e
-
- if [ "$1" = "configure" ]; then
- MAN=/usr/share/man/man1
- BIN=/usr/bin
- update-alternatives --install \
- $BIN/vncpasswd vncpasswd $BIN/realvncpasswd 70 \
- --slave \
- $MAN/vncpasswd.1.gz vncpasswd.1.gz $MAN/realvncpasswd.1.gz
- fi
-
- # Automatically added by dh_installdocs
- if [ "$1" = configure ] && which install-docs >/dev/null 2>&1; then
- install-docs -i /usr/share/doc-base/vnc
- fi
- # End automatically added section
-
-
- exit 0
-