mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
11 lines
165 B
Bash
11 lines
165 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ -x /etc/init.d/yunohost-api ] && ! [ -d /run/systemd/system ]; then
|
|
invoke-rc.d yunohost-firewall stop || true
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|