diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-01-01 10:01:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-01 10:01:24 +0100 |
commit | 35b338ad669541069d8dd003127a039bafce3183 (patch) | |
tree | 4551ef27635a95d04fa0206d4f60f7a66e4dd4b0 | |
parent | d1f61b0606852658f53d0b6af20527138ed42390 (diff) | |
parent | 52e6eb3386794fbd79a4a4e50f1b6a40412a935f (diff) | |
download | vyatta-cfg-35b338ad669541069d8dd003127a039bafce3183.tar.gz vyatta-cfg-35b338ad669541069d8dd003127a039bafce3183.zip |
Merge pull request #43 from sarthurdev/firewall
firewall: T2199: Call firewall.py in vyos-router to create tables/chains
-rwxr-xr-x | scripts/init/vyos-router | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/init/vyos-router b/scripts/init/vyos-router index 31e9528..3283444 100755 --- a/scripts/init/vyos-router +++ b/scripts/init/vyos-router @@ -319,6 +319,7 @@ start () # As VyOS does not execute commands that are not present in the CLI we call # the script by hand to have a single source for the login banner and MOTD ${vyos_conf_scripts_dir}/system_console.py || log_failure_msg "could not reset serial console" + ${vyos_conf_scripts_dir}/firewall.py || log_failure_msg "could not initiate firewall rules" ${vyos_conf_scripts_dir}/system-login-banner.py || log_failure_msg "could not reset motd and issue files" ${vyos_conf_scripts_dir}/system-option.py || log_failure_msg "could not reset system option files" ${vyos_conf_scripts_dir}/conntrack.py || log_failure_msg "could not reset conntrack subsystem" |