/usr/share/perl5/Debian/OpenAFS/ConfigUtils.pm is in openafs-dbserver 1.8.0~pre5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # This is -*- perl -*-
package Debian::OpenAFS::ConfigUtils;
use strict;
use vars qw( @ISA @EXPORT @unwinds);
@ISA = qw(Exporter);
require Exporter;
@EXPORT = qw(@unwinds run unwind);
sub run ($) {
print join(' ', @_);
print "\n";
system (@_) == 0
or die "Failed: $?\n";
}
# This subroutine takes a command to run in case of failure. After
# each succesful step, this routine should be run with a command to
# undo the successful step.
sub unwind($) {
push @unwinds, $_[0];
}
1;
|