home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Welt 2006 November (DVD)
/
PCWELT_11_2006.ISO
/
casper
/
filesystem.squashfs
/
var
/
lib
/
dpkg
/
info
/
system-tools-backends.postrm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-08-14
|
219 b
|
15 lines
#!/bin/sh
set -e
# Do not restart dbus on upgrades, only if we remove the package.
if [ "$1" = "remove" ] ; then
if [ -x /etc/init.d/dbus ]; then
invoke-rc.d dbus force-reload || true
fi
fi
exit 0