mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
11 lines
186 B
Bash
11 lines
186 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -f /etc/init.d/yunohost-api ]; then
|
|
service yunohost-api stop
|
|
# nc -zv 127.0.0.1 6787 < /dev/null 2> /dev/null
|
|
# if [[ ! $? -eq 0 ]];
|
|
# then
|
|
# exit 1
|
|
# fi
|
|
fi
|