]> andersk Git - gssapi-openssh.git/commitdiff
o Change the check at the beginning of copyPRNGFile() from checking for
authorcphillip <cphillip>
Mon, 8 Jul 2002 21:02:57 +0000 (21:02 +0000)
committercphillip <cphillip>
Mon, 8 Jul 2002 21:02:57 +0000 (21:02 +0000)
      the presence of /dev/random to checking for the presence of
      $sysconfdir/ssh_prng_cmds.  This will allow installations of this
      file all the time, since we are now unconditionally installing
      ssh-rand-helper.

setup/setup-openssh.pl

index e14a4f9716e15f8fee093bdadbc1b9343a691315..9ef155b60ca8ee3538cad3e6ef32a01d58bd16c9 100644 (file)
@@ -318,9 +318,9 @@ sub copyPRNGFile
     my($mode, $uid, $gid);
     my($data);
 
-    if ( isPresent("/dev/random") && !isForced() )
+    if ( isPresent("$sysconfdir/ssh_prng_cmds") && !isForced() )
     {
-        printf("/dev/random found and not forced.  Not installing ssh_prng_cmds...\n");
+        printf("ssh_prng_cmds found and not forced.  Not installing ssh_prng_cmds...\n");
         return;
     }
 
This page took 0.049128 seconds and 5 git commands to generate.