mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-08 08:44:05 +01:00
22 lines
691 B
Plaintext
22 lines
691 B
Plaintext
#
|
|
# Shorewall6 version 4 - isusable File
|
|
#
|
|
# /etc/shorewall6/isusable
|
|
#
|
|
# This script is called when Shorewall6 is attempting to determine
|
|
# if an interface named in /etc/shorewall/providers is usable.
|
|
#
|
|
# The script is invoked inside a function that accepts an interface
|
|
# name as a single argument. The file below is designed to work with
|
|
# both swping and lsm as described at http://www.shorewall.net/MultiISP.html
|
|
#
|
|
# See http://shorewall.net/shorewall_extension_scripts.htm for additional
|
|
# information.
|
|
#
|
|
###############################################################################
|
|
local status=0
|
|
|
|
[ -f ${VARDIR}/${1}.status ] && status=$(cat ${VARDIR}/${1}.status)
|
|
|
|
return $status
|