60b6ad44ca
While here don't remove the dbus pid file, dbus pipe and machine-id. [1] Now dbus won't die on updates anymore. Submitted by: rakuco@, zeising@ Obtained from: gnome dev repo [1]
15 lines
233 B
Bash
15 lines
233 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
case $2 in
|
|
DEINSTALL)
|
|
echo ""
|
|
echo "To really remove the dbus port, please remove the following"
|
|
echo "directories and the content manualy:"
|
|
echo ""
|
|
echo "/var/run/dbus /var/db/dbus"
|
|
echo ""
|
|
;;
|
|
esac
|