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