static void
-print_include(struct fw3_include *include, enum fw3_family family)
+print_include(struct fw3_include *include)
{
FILE *f;
char line[1024];
- if (!fw3_is_family(include, family))
- return;
-
info(" * Loading include '%s'", include->path);
if (!(f = fopen(include->path, "r")))
{
struct fw3_include *include;
+ bool exec = false;
+ const char *restore = "iptables-restore";
+
+ if (family == FW3_FAMILY_V6)
+ restore = "ip6tables-restore";
+
list_for_each_entry(include, &state->includes, list)
{
if (reload && !include->reload)
continue;
- if (include->type == FW3_INC_TYPE_RESTORE)
- print_include(include, family);
+ if (include->type != FW3_INC_TYPE_RESTORE)
+ continue;
+
+ if (!fw3_is_family(include, family))
+ continue;
+
+ if (!exec)
+ {
+ exec = fw3_command_pipe(false, restore, "--noflush");
+
+ if (!exec)
+ return;
+ }
+
+ print_include(include);
}
+
+ fw3_command_close();
}
fw3_ipt_commit(handle);
}
- //fw3_print_includes(cfg_state, family, false);
+ if (!print_family)
+ fw3_print_includes(cfg_state, family, false);
family_set(run_state, family, true);
family_set(cfg_state, family, true);
fw3_ipt_commit(handle);
}
- //fw3_print_includes(cfg_state, family, true);
+ fw3_print_includes(cfg_state, family, true);
family_set(run_state, family, true);
family_set(cfg_state, family, true);