]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_installpam
r840: This commit was manufactured by cvs2svn to create tag
[debhelper.git] / dh_installpam
diff --git a/dh_installpam b/dh_installpam
deleted file mode 100755 (executable)
index 897fd7d..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/perl -w
-#
-# Integration with debian pam system:
-#
-# If debian/pam file exists, save it to $TMP/etc/pam.d/$PACKAGE
-
-BEGIN { push @INC, "debian", "/usr/share/debhelper" }
-use Dh_Lib;
-init();
-
-foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
-       $TMP=tmpdir($PACKAGE);
-       $pam=pkgfile($PACKAGE,"pam");
-       
-       if ($pam ne '') {
-               if (! -d "$TMP/etc/pam.d") {
-                       doit("install","-d","$TMP/etc/pam.d");
-               }
-               doit("install","-p","-m644",$pam,"$TMP/etc/pam.d/$PACKAGE");
-       }
-}