This file is indexed.

postinst is in irda-utils 0.9.18-12ubuntu1.

This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/bin/bash
# Post-installation script for irda-utils
# Copyright 2003,2004 Sebastian Henschel <shensche@debian.org>
# This file is hereby placed into the public domain.

PACKAGE="irda-utils"
CONFIG="/etc/default/$PACKAGE"
MODFILE_26="/etc/modprobe.d/${PACKAGE}.conf"

set -e
. /usr/share/debconf/confmodule


write_config_modules () {
    if [ ! -e $MODFILE_26 ]; then
        cat <<EOF > $MODFILE_26
# For FIR device

EOF
    fi

    # get configuration data
    db_get $PACKAGE/firdev
    firdev="$RET"
    firdev26="$firdev"
    [ "$firdev" = "smc-ircc" ] && firdev26="smsc-ircc2"
    [ "$firdev" = "toshoboe" ] && firdev26="donauboe"
    db_get $PACKAGE/firopt
    firopt="$RET"


    # remove old options/aliases
    cp -a -f $MODFILE_26 $MODFILE_26.tmp

    sed -e "
        /.*options.*/d
        /.*alias irda0.*/d
	/^# Other aliases are defined/d
	/.*alias char-major-10-187 irnet/d
    " < $MODFILE_26 > $MODFILE_26.tmp
    cat -s $MODFILE_26.tmp > $MODFILE_26
    rm $MODFILE_26.tmp


    # insert new options/aliases
    if [ "$DEVICE" = "serial" ]; then
        echo "#options $firdev26 $firopt" >> $MODFILE_26
        echo "#alias irda0 $firdev26" >> $MODFILE_26
    else
        echo "options $firdev26 $firopt" >> $MODFILE_26
        echo "alias irda0 $firdev26" >> $MODFILE_26
    fi

}



write_config_default () {
    if [ ! -e $CONFIG ]; then # create new configuration file
        cat <<EOF > $CONFIG
# Set your startup settings for irattach, the IrDA-daemon, here.

# Set this to 'false' if you do not need to start irattach. Otherwise set it
# to 'true'.
ENABLE=

# Set this to 'false' if you do not want automatic discovery of irda devices.
# If 'true', it will automatically start irattach if devices are found.
AUTOMATIC=

# Set discovery mode which usually is a good idea for finding other devices.
# If set 'true' or 'false' irattach and sysctl are used to enable and disable
# discovery mode. By default discover mode is disabled.
DISCOVERY=

# Set IRDA device to access (e.g. /dev/ttyS1 or irda0).
# In case of irda0, the proper module for FIR-mode has to be set in
# $MODFILE_26
DEVICE=

# Set dongle type, e.g. none, tekram, esi, actisys, actisys+, ep7211, girbil,
# litelink, airport, old_belkin, mcp2120, act200l, ma600). You do not need
# a dongle for FIR mode.
DONGLE=

# Set the serial device to quiet with setserial. This is only useful on some
# machines in FIR-mode, so most people should leave it blank. See 
# README.Debian for more information.
SETSERIAL=

# Some laptops (Toshiba Satellites and others with SMCS LPC47N227) require
# running smcinit to initialize the irda device prior to use.
# If you device is one of them, set this option to "yes"
USE_SMCINIT="no"

# Set the max baud rate for IrDA device
# Values: 2400, 3600, 9600, 14400, 19200, 28800, 38400, 57600, 115200
MAX_BAUD_RATE="115200"
EOF
    fi

    # read config
    db_get $PACKAGE/enable
    ENABLE="$RET"
    db_get $PACKAGE/automatic
    AUTOMATIC="$RET"
    db_get $PACKAGE/discovery
    DISCOVERY="$RET"
    if [ "$DEVICE" = "serial" ]; then
        db_get $PACKAGE/ttydev
        DEVICE="$RET"
    else
        DEVICE="irda0"
    fi
    db_get $PACKAGE/dongle
    DONGLE="$RET"
    db_get $PACKAGE/setserial
    SETSERIAL="$RET"

    # backup for $CONFIG with preserved ownership and permissions
    cp -a -f $CONFIG $CONFIG.tmp

    # re-insert values deleted in $CONFIG but existant in debconf
    test -z "$ENABLE" || grep -Eq '^ *ENABLE=' $CONFIG || echo "ENABLE=" >> $CONFIG
    test -z "$AUTOMATIC" || grep -Eq '^ *AUTOMATIC=' $CONFIG || echo "AUTOMATIC=" >> $CONFIG
    test -z "$DISCOVERY" || grep -Eq '^ *DISCOVERY=' $CONFIG || echo "DISCOVERY=" >> $CONFIG
    test -z "$DEVICE" || grep -Eq '^ *DEVICE=' $CONFIG || echo "DEVICE=" >> $CONFIG
    test -z "$DONGLE" || grep -Eq '^ *DONGLE=' $CONFIG || echo "DONGLE=" >> $CONFIG
    test -z "$SETSERIAL" || grep -Eq '^ *SETSERIAL=' $CONFIG || echo "SETSERIAL=" >> $CONFIG

    # replace values of configuration variables in config file, preserving
    # all comments and other variables defined by the admin
    sed -e "
        s#^ *ENABLE=.*#ENABLE=\"$ENABLE\"#
        s#^ *AUTOMATIC=.*#AUTOMATIC=\"$AUTOMATIC\"#
        s#^ *DISCOVERY=.*#DISCOVERY=\"$DISCOVERY\"#
        s#^ *DEVICE=.*#DEVICE=\"$DEVICE\"#
        s#^ *DONGLE=.*#DONGLE=\"$DONGLE\"#
        s#^ *SETSERIAL=.*#SETSERIAL=\"$SETSERIAL\"#
    " < $CONFIG > $CONFIG.tmp
    mv -f $CONFIG.tmp $CONFIG
}




if [ "$1" = "configure" ]; then

    cd /dev && /dev/MAKEDEV irda && /dev/MAKEDEV irnet

    db_get $PACKAGE/selectdevice
    DEVICE=$RET

    write_config_modules
    write_config_default

    # Remove shutdown and reboot links; this init script does not need them.
    if dpkg --compare-versions "$2" lt "0.9.16-11ubuntu2"; then
	rm -f /etc/rc0.d/K20irda-utils /etc/rc6.d/K20irda-utils
    fi
fi

# Automatically added by dh_installinit
if [ -x "/etc/init.d/irda-utils" ]; then
	if [ ! -e "/etc/init/irda-utils.conf" ]; then
		update-rc.d irda-utils start 20 2 3 4 5 . stop 20 1 . >/dev/null
	fi
	invoke-rc.d irda-utils start || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
if [ -x "/etc/init.d/irda-setup" ]; then
	if [ ! -e "/etc/init/irda-setup.conf" ]; then
		update-rc.d irda-setup start 47 S . >/dev/null
	fi
fi
# End automatically added section
# Automatically added by dh_installudev
if [ "$1" = configure ]; then
	if [ -e "/etc/udev/rules.d/z60_irda-utils.rules" ]; then
		echo "Preserving user changes to /etc/udev/rules.d/40-irda-utils.rules ..."
		if [ -e "/etc/udev/rules.d/40-irda-utils.rules" ]; then
			mv -f "/etc/udev/rules.d/40-irda-utils.rules" "/etc/udev/rules.d/40-irda-utils.rules.dpkg-new"
		fi
		mv -f "/etc/udev/rules.d/z60_irda-utils.rules" "/etc/udev/rules.d/40-irda-utils.rules"
	fi
fi
# End automatically added section


exit 0