10 lines
160 B
Text
10 lines
160 B
Text
#
|
|
# This script removes pre-created dirs required for dbus-daemon.
|
|
#
|
|
case "${ACTION}" in
|
|
post)
|
|
if [ -d var/run/dbus ]; then
|
|
rm -rf var/run/dbus
|
|
fi
|
|
;;
|
|
esac
|