mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-09 06:25:07 +00:00
10 lines
207 B
Bash
Executable File
10 lines
207 B
Bash
Executable File
#!/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 |