File: postinst

package info (click to toggle)
xpenguins-applet 2.1.1-7
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,228 kB
  • ctags: 371
  • sloc: ansic: 3,989; sh: 3,792; xml: 457; makefile: 145
file content (25 lines) | stat: -rw-r--r-- 540 bytes parent folder | download | duplicates (4)
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
#!/bin/sh -e

if [ "$1" = "configure" ]; then
    SCHEMAS_FILES="xpenguins-applet.schemas"

#### This isnt necessary,  look at  #340518
####
#    for SCHEMA in $SCHEMAS_FILES; do
#        if [ -e /etc/gconf/schemas/$SCHEMA ]; then
#            HOME=/root \
#            GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \
#            gconftool-2 --makefile-install-rule \
#            /etc/gconf/schemas/$SCHEMA > /dev/null
#        fi
#    done
#####
#####

    # Call scrollkeeper
    scrollkeeper-update -q
fi

#DEBHELPER#

exit 0