]> andersk Git - gssapi-openssh.git/commitdiff
Removed debug print outs and added adaptation note.
authorcphillip <cphillip>
Thu, 10 Jan 2002 17:32:59 +0000 (17:32 +0000)
committercphillip <cphillip>
Thu, 10 Jan 2002 17:32:59 +0000 (17:32 +0000)
setup/setup-openssh.pl

index b00eef25719db30e13655df82337c9932bdfc6fe..bf06461318f2788d7bcfb2407c466a4d3a27d5f3 100644 (file)
@@ -1,6 +1,10 @@
 #!/usr/bin/perl -w
 #
-# fixpaths  - substitute makefile variables into text files
+# setup-openssh.pl - substitutes variables into text files and runs
+#                     ssh key gen programs
+#
+# adapted from 'fixpath', located in the openssh-3.0.2p1 package
+#
 
 #
 # Set up path prefixes for use in the path translations
@@ -36,12 +40,6 @@ sub fixpaths
         "/usr/bin:/bin:/usr/sbin:/sbin" => "/usr/bin:/bin:/usr/sbin:/sbin:${bindir}",
         );
 
-    print "dumping list of path translations..\n";
-    for $s (keys(%def))
-    {
-        print "$s = " . $def{$s} . "\n";
-    }
-
     #
     # Files on which to perform path translations
     #
@@ -61,7 +59,7 @@ sub fixpaths
         "sftp.1",
         );
 
-    print "\ntranslating files..\n";
+    print "\nTranslating strings in config/man files..\n";
     for $f (@files)
     {
         $f =~ /(.*\/)*(.*)$/;
@@ -97,7 +95,7 @@ sub fixpaths
 
 sub runkeygen
 {
-    print "\nkey gen routine starting..\n";
+    print "\nGenerating ssh keys (if necessary)..\n";
     if ( -e "${sysconfdir}/ssh_host_key" )
     {
         print "${sysconfdir}/ssh_host_key already exists, skipping.\n";
This page took 0.044261 seconds and 5 git commands to generate.