diff options
-rw-r--r-- | packages/carp.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/carp.xml b/packages/carp.xml index 94b0581b..279cd51c 100644 --- a/packages/carp.xml +++ b/packages/carp.xml @@ -235,6 +235,7 @@ /* * create the carp interface */ + fwrite($fout, "echo Creating {$pfsync_instances_counter} ..."); fwrite($fout, "/sbin/ifconfig carp" . $carp_instances_counter . " create\n"); $broadcast_address = gen_subnet_max($carp['ipaddress'], $carp['netmask']); if($carp['password'] != "") { @@ -254,6 +255,7 @@ fwrite($fout, "/sbin/ifconfig pfsync" . $pfsync_instances_counter . " up syncif " . $carp['synciface'] . "\n"); $pfsync_instances_counter++; } + fwrite($fout, "sleep 1"); $carp_instances_counter++; } } |