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

15 lines
374 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
if systemctl list-unit-files | grep -q @CPACK_PACKAGE_NAME@.service ; then
deb-systemd-invoke stop @CPACK_PACKAGE_NAME@.service
fi
fi
# End automatically added section