Just return 0 if bastille_jail_external is set
This commit is contained in:
@@ -93,19 +93,19 @@ validate_netconf() {
|
|||||||
echo -e "${COLOR_RED}Invalid network configuration.${COLOR_RESET}"
|
echo -e "${COLOR_RED}Invalid network configuration.${COLOR_RESET}"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
if [ -z "${bastille_jail_external}" ]; then
|
if [ -n "${bastille_jail_external}" ]; then
|
||||||
if [ -n "${bastille_jail_loopback}" ] && [ -z "${bastille_jail_external}" ]; then
|
return 0
|
||||||
if [ -z "${bastille_jail_interface}" ]; then
|
elif [ ! -z "${bastille_jail_loopback}" ] && [ -z "${bastille_jail_external}" ]; then
|
||||||
echo -e "${COLOR_RED}Invalid network configuration.${COLOR_RESET}"
|
if [ -z "${bastille_jail_interface}" ]; then
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
elif [ -z "${bastille_jail_loopback}" ] && [ -n "${bastille_jail_interface}" ]; then
|
|
||||||
echo -e "${COLOR_RED}Invalid network configuration.${COLOR_RESET}"
|
|
||||||
exit 1
|
|
||||||
elif [ -z "${bastille_jail_external}" ]; then
|
|
||||||
echo -e "${COLOR_RED}Invalid network configuration.${COLOR_RESET}"
|
echo -e "${COLOR_RED}Invalid network configuration.${COLOR_RESET}"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
elif [ -z "${bastille_jail_loopback}" ] && [ ! -z "${bastille_jail_interface}" ]; then
|
||||||
|
echo -e "${COLOR_RED}Invalid network configuration.${COLOR_RESET}"
|
||||||
|
exit 1
|
||||||
|
elif [ -z "${bastille_jail_external}" ]; then
|
||||||
|
echo -e "${COLOR_RED}Invalid network configuration.${COLOR_RESET}"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user