diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2014-07-11 16:13:12 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2014-07-11 16:13:12 +0000 |
commit | 66c0e0b3c70182e87ef424a171f90613c69f4cde (patch) | |
tree | 10b02ddfdf0409db82b0b163c7d1b95598d031e1 | |
parent | 76609a6f5e18c60b1d84486ab8618ab36bce3474 (diff) |
Fix dryrun for remote relayd test.
-rw-r--r-- | regress/usr.sbin/relayd/Remote.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.sbin/relayd/Remote.pm b/regress/usr.sbin/relayd/Remote.pm index f9e51b32624..003b274c95a 100644 --- a/regress/usr.sbin/relayd/Remote.pm +++ b/regress/usr.sbin/relayd/Remote.pm @@ -1,4 +1,4 @@ -# $OpenBSD: Remote.pm,v 1.3 2014/06/22 14:18:01 bluhm Exp $ +# $OpenBSD: Remote.pm,v 1.4 2014/07/11 16:13:11 bluhm Exp $ # Copyright (c) 2010-2013 Alexander Bluhm <bluhm@openbsd.org> # @@ -48,7 +48,7 @@ sub new { my %args = @_; $args{logfile} ||= "remote.log"; $args{up} ||= "Started"; - $args{down} ||= $args{dryrun} ? "no actions" : "parent terminating"; + $args{down} ||= $args{dryrun} ? "relayd.conf" : "parent terminating"; $args{func} = sub { Carp::confess "$class func may not be called" }; $args{remotessh} or croak "$class remote ssh host not given"; |