OpenSearch/pkg/debian/control/prerm

10 lines
207 B
Plaintext
Raw Normal View History

2011-08-10 05:04:29 -04:00
#!/bin/sh
set -e
if [ -x "/etc/init.d/elasticsearch" ]; then
if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
invoke-rc.d elasticsearch stop || true
else
/etc/init.d/elasticsearch stop || true
fi
fi