ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/ozone/mgar/gar/bin/check_for_deps
Revision: 1
Committed: Sat Jun 20 14:58:51 2026 UTC (4 weeks, 3 days ago) by operz
File size: 252 byte(s)
Log Message:
Initial import of OZSW mgar build tree

File Contents

# Content
1 #!/usr/bin/perl -w
2
3 use strict;
4
5 my $status = 0;
6
7 foreach my $pkg (@ARGV) {
8 print "==> Verifying installed package $pkg: ";
9 if ( ! -d "/var/sadm/pkg/$pkg" ) {
10 print "MISSING\n";
11 $status = 1;
12 } else {
13 print "ok\n";
14 }
15 }
16
17 exit $status;

Properties

Name Value
svn:executable *