warn not die on unknown ssh_config options
authorDobrica Pavlinusic <dpavlin@rot13.org>
Sun, 16 Feb 2020 14:42:27 +0000 (15:42 +0100)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Sun, 16 Feb 2020 14:42:27 +0000 (15:42 +0100)
bak-git-server.pl

index 7a952b5..fac76b7 100755 (executable)
@@ -79,7 +79,7 @@ while(<$ssh_fd>) {
        } elsif ( /^\s+$/ ) {
                # nop
        } else {
-               die "can't parse [$_]";
+               warn "can't parse [$_]";
        }
 }