9 lines
150 B
Bash
9 lines
150 B
Bash
#! /bin/sh
|
|
|
|
if which invoke-rc.d >/dev/null 2>&1; then
|
|
invoke-rc.d monasca-agent stop || true
|
|
else
|
|
/etc/init.d/monasca-agent stop || true
|
|
fi
|
|
|