Fix logging remote tests to use new policy script organization.

This commit is contained in:
Jon Siwek 2011-06-20 13:49:30 -05:00
parent 83ffca5a4a
commit c1638d7172
2 changed files with 6 additions and 6 deletions

View file

@ -51,7 +51,7 @@ event bro_init()
module SSH; module SSH;
@load listen-clear @load communication/listen-clear
event remote_connection_handshake_done(p: event_peer) event remote_connection_handshake_done(p: event_peer)
{ {
@ -84,9 +84,9 @@ event remote_connection_handshake_done(p: event_peer)
##### #####
@load remote @load communication
redef Remote::destinations += { redef Communication::nodes += {
["foo"] = [$host = 127.0.0.1, $connect=T, $request_logs=T] ["foo"] = [$host = 127.0.0.1, $connect=T, $request_logs=T]
}; };

View file

@ -40,7 +40,7 @@ event bro_init()
module SSH; module SSH;
@load listen-clear @load communication/listen-clear
function fail(rec: Log): bool function fail(rec: Log): bool
{ {
@ -68,9 +68,9 @@ event remote_connection_handshake_done(p: event_peer)
##### #####
@load remote @load communication
redef Remote::destinations += { redef Communication::nodes += {
["foo"] = [$host = 127.0.0.1, $connect=T, $request_logs=T] ["foo"] = [$host = 127.0.0.1, $connect=T, $request_logs=T]
}; };