]> andersk Git - gssapi-openssh.git/blobdiff - openssh/contrib/aix/inventory.sh
Import of OpenSSH 3.8p1
[gssapi-openssh.git] / openssh / contrib / aix / inventory.sh
index aa44ab9d4453999b96b4059d84fe63de89675f96..44f59a4130dd8997afe93fd8fe06be4be1d3aa62 100755 (executable)
@@ -1,10 +1,12 @@
 #!/bin/sh
 #
 # inventory.sh
+# $Id$
 #
-# Originall written by Ben Lindstrom, modified by Darren Tucker to use perl
+# Originally written by Ben Lindstrom, modified by Darren Tucker to use perl
+# This file is placed into the public domain.
 #
-# This will produced and AIX package inventory file, which looks like:
+# This will produce an AIX package inventory file, which looks like:
 #
 # /usr/local/bin:
 #          class=apply,inventory,openssh
@@ -52,10 +54,10 @@ find . ! -name . -print | perl -ne '{
        } elsif ( -f $_ ) {
                # Entry is File
                print "\ttype=FILE\n";
-               print "\tsize=VOLATILE\n";
+               print "\tsize=$sz\n";
                print "\tchecksum=VOLATILE\n";
        } elsif ( -d $_ ) {
                # Entry is Directory
                print "\ttype=DIRECTORY\n";
-       } 
+       }
 }'
This page took 0.034992 seconds and 4 git commands to generate.