#!/bin/sh # prerm script for rhdropbox set -e if [ -x "/etc/init.d/rhdropbox" ] && [ "$1" = remove ]; then if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then invoke-rc.d rhdropbox stop || true else /etc/init.d/rhdropbox stop || true fi fi