]> andersk Git - openssh.git/blame - contrib/aix/inventory.sh
- (dtucker) [Makefile.in] Remove auth2-krb5.
[openssh.git] / contrib / aix / inventory.sh
CommitLineData
ef817d21 1#!/bin/sh
2#
3# inventory.sh
ed00d4b7 4# $Id$
ef817d21 5#
21e3ecaf 6# Originally written by Ben Lindstrom, modified by Darren Tucker to use perl
ef817d21 7#
21e3ecaf 8# This will produce an AIX package inventory file, which looks like:
ef817d21 9#
10# /usr/local/bin:
11# class=apply,inventory,openssh
12# owner=root
13# group=system
14# mode=755
15# type=DIRECTORY
16# /usr/local/bin/slogin:
17# class=apply,inventory,openssh
18# owner=root
19# group=system
20# mode=777
21# type=SYMLINK
22# target=ssh
23# /usr/local/share/Ssh.bin:
24# class=apply,inventory,openssh
25# owner=root
26# group=system
27# mode=644
28# type=FILE
29# size=VOLATILE
30# checksum=VOLATILE
31
32find . ! -name . -print | perl -ne '{
33 chomp;
34 if ( -l $_ ) {
35 ($dev,$ino,$mod,$nl,$uid,$gid,$rdev,$sz,$at,$mt,$ct,$bsz,$blk)=lstat;
36 } else {
37 ($dev,$ino,$mod,$nl,$uid,$gid,$rdev,$sz,$at,$mt,$ct,$bsz,$blk)=stat;
38 }
39
40 # Start to display inventory information
41 $name = $_;
42 $name =~ s|^.||; # Strip leading dot from path
43 print "$name:\n";
44 print "\tclass=apply,inventory,openssh\n";
45 print "\towner=root\n";
46 print "\tgroup=system\n";
47 printf "\tmode=%lo\n", $mod & 07777; # Mask perm bits
48
49 if ( -l $_ ) {
50 # Entry is SymLink
51 print "\ttype=SYMLINK\n";
52 printf "\ttarget=%s\n", readlink($_);
53 } elsif ( -f $_ ) {
54 # Entry is File
55 print "\ttype=FILE\n";
43e41c2c 56 print "\tsize=$sz\n";
ef817d21 57 print "\tchecksum=VOLATILE\n";
58 } elsif ( -d $_ ) {
59 # Entry is Directory
60 print "\ttype=DIRECTORY\n";
61 }
62}'
This page took 0.580268 seconds and 5 git commands to generate.