chiark / gitweb /
@@ -1,3 +1,9 @@
authorian <ian>
Mon, 11 Feb 2002 21:46:58 +0000 (21:46 +0000)
committerian <ian>
Mon, 11 Feb 2002 21:46:58 +0000 (21:46 +0000)
+userv-utils (0.2.3) unstable; urgency=low
+
+  * udptunnel-reconf can write a known_hosts file for you.
+
+ -- Ian Jackson <ian@davenant.greenend.org.uk>  Mon, 11 Feb 2002 21:46:48 +0000
+
 userv-utils (0.2.2) unstable; urgency=low

   * udptunnel-reconf default script pauses for 10s between restarts.

changelog
debian/changelog
ipif/udptunnel-reconf.pl

index efb398b8670bb35299b89ce3dd81c6ecd9529369..d783f0f7592b837d4282d7df57d6ab87193feb75 100644 (file)
--- a/changelog
+++ b/changelog
@@ -1,3 +1,9 @@
+userv-utils (0.2.3) unstable; urgency=low
+
+  * udptunnel-reconf can write a known_hosts file for you.
+
+ -- Ian Jackson <ian@davenant.greenend.org.uk>  Mon, 11 Feb 2002 21:46:48 +0000
+
 userv-utils (0.2.2) unstable; urgency=low
 
   * udptunnel-reconf default script pauses for 10s between restarts.
index efb398b8670bb35299b89ce3dd81c6ecd9529369..d783f0f7592b837d4282d7df57d6ab87193feb75 100644 (file)
@@ -1,3 +1,9 @@
+userv-utils (0.2.3) unstable; urgency=low
+
+  * udptunnel-reconf can write a known_hosts file for you.
+
+ -- Ian Jackson <ian@davenant.greenend.org.uk>  Mon, 11 Feb 2002 21:46:48 +0000
+
 userv-utils (0.2.2) unstable; urgency=low
 
   * udptunnel-reconf default script pauses for 10s between restarts.
index ea4c86f0d337f80ce7d29921bb90eeee9f1473be..d802e6fe870a8167ec1488ca85c7dc823ce74d1f 100755 (executable)
@@ -163,16 +163,21 @@ $ipifnetsfile= var_global(ipifnetsfile);
 write_file($ipifnetsfile,'ipifnetsfile','', $ipif_file);
 
 $active_file= '';
+$knownhosts_file= '';
 $inittab= '';
 $ix= 0;
 foreach $site (@actives) {
     $active_file.= "$site\t".var_site('activesxinfo')."\n";
     $inittab.= sprintf("t%d", $ix++).':'.var_site('inittab_line')."\n";
+    $hostkey= var_site('rhostkey');
+    $knownhosts_file.= var_site('sshdest').' '.$hostkey."\n"
+       if length $hostkey;
     $invoke_file= var_site('invoke_file');
     write_file($invoke_file, 'invoke_file',
-              var_site('invoke_head'), var_site('invoke_body'));
+              var_site('invoke_head')."\n", var_site('invoke_body'));
     chmod 0777&~umask, $invoke_file or die $!;
 }
+write_file(var_global('knownhostsfile'),'knownhostsfile', '',$knownhosts_file);
 write_file(var_global('activesfile'),'activesfile', '',$active_file);
 
 print