mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
6 lines
126 B
Bash
6 lines
126 B
Bash
if ! systemctl is-active --quiet mssql-server.service; then
|
|
echo "False"
|
|
exit
|
|
else
|
|
echo "True"
|
|
fi |