Remove Debian packaging
[openafs.git] / src / packaging / Debian / ConfigUtils.pm
diff --git a/src/packaging/Debian/ConfigUtils.pm b/src/packaging/Debian/ConfigUtils.pm
deleted file mode 100644 (file)
index 4d35047..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-# 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;