Mercurial > gftp.yaz
annotate debian/gftp-text.postinst @ 879:a41a3590d696
2007-2-14 Brian Masney <masneyb@gftp.org>
* lib/gftp.h src/gtk/gtkui.c src/uicommon/gftpui.c - added refreshing
field to the gftp_request structure. If this is set in
gftpui_common_cmd_open(), then the refresh command is not ran after
a connection is made to the server. This field is currently only
enabled when running called from the refresh function in the GTK+
port. It fixes an issue where the refresh command was being ran
twice. (closes #171732)
author | masneyb |
---|---|
date | Thu, 15 Feb 2007 01:06:49 +0000 |
parents | 398fcbad832b |
children | 2311d02b07bc |
rev | line source |
---|---|
144 | 1 #!/bin/sh |
400 | 2 # postinst script for gftp-text |
3 | |
4 set -e | |
5 | |
6 case "$1" in | |
7 configure|abort-upgrade) | |
8 update-alternatives --install /usr/bin/ftp ftp /usr/bin/gftp-text 100 \ | |
9 --slave /usr/share/man/man1/ftp.1.gz ftp.1.gz /usr/share/man/man1/gftp.1.gz | |
144 | 10 |
400 | 11 ;; |
12 abort-remove|abort-deconfigure) | |
13 ;; | |
14 *) | |
15 echo "postinst called with unknown argument \`$1'" >&2 | |
16 exit 1 | |
17 ;; | |
18 esac | |
144 | 19 |
400 | 20 |
21 # dh_installdeb will replace this with shell code automatically | |
22 # generated by other debhelper scripts. | |
23 | |
24 #DEBHELPER# | |
25 | |
26 exit 0 | |
27 |