1
0
Fork 0
arangodb/Installation/debian/prerm.in

13 lines
287 B
Bash
Executable File

#!/bin/sh
set -e
# Automatically added by dh_installinit
if [ -x "/etc/init.d/arangodb3" ]; then
invoke-rc.d arangodb3 stop || exit $?
fi
if [ -d /run/systemd/system ] ; then
deb-systemd-invoke stop @CPACK_PACKAGE_NAME@.service >/dev/null
fi
# End automatically added section