#!/bin/sh case "$1" in install) MESSAGEUSER=messagebus LAUNCHER=/usr/lib/dbus-1.0/dbus-daemon-launch-helper . /etc/init.d/rc.functions chown root:"$MESSAGEUSER" "$LAUNCHER" chmod 4754 "$LAUNCHER" ;; uninstall) ;; depend) ;; *) echo "Usage $0 {install | uninstall | depend}" >&2 exit 1 esac