2009-05-04 21:58:22 +00:00
|
|
|
#
|
2009-12-11 11:06:41 +00:00
|
|
|
# This script fixes permissions for dbus-daemon-launch-helper.
|
2009-05-04 21:58:22 +00:00
|
|
|
#
|
2009-12-11 11:06:41 +00:00
|
|
|
dbus_launch=usr/libexec/dbus-daemon-launch-helper
|
2009-05-04 21:58:22 +00:00
|
|
|
|
|
|
|
case "${ACTION}" in
|
|
|
|
pre)
|
|
|
|
;;
|
|
|
|
post)
|
|
|
|
chown root:dbus ${dbus_launch}
|
|
|
|
chmod 4750 ${dbus_launch}
|
|
|
|
;;
|
|
|
|
esac
|