summaryrefslogtreecommitdiff
path: root/dh_installlogrotate
diff options
context:
space:
mode:
authorjoey <joey>2001-02-09 23:13:53 +0000
committerjoey <joey>2001-02-09 23:13:53 +0000
commit7f94f1760a87781615730ae5daf9b6b58a7feaf9 (patch)
treef4e87a742fb7798eed9d5f4bd8f16c22eaca4268 /dh_installlogrotate
parent3560a26af72470982137705ff8ab701217416242 (diff)
r432: more podization, will it ever end?
Diffstat (limited to 'dh_installlogrotate')
-rwxr-xr-xdh_installlogrotate33
1 files changed, 31 insertions, 2 deletions
diff --git a/dh_installlogrotate b/dh_installlogrotate
index 8cefc454..7ccae6a1 100755
--- a/dh_installlogrotate
+++ b/dh_installlogrotate
@@ -1,9 +1,26 @@
#!/usr/bin/perl -w
-#
-# Install logrotate config files.
+
+=head1 NAME
+
+dh_installlogrotate - install logrotate config files
+
+=cut
use strict;
use Debian::Debhelper::Dh_Lib;
+
+=head1 SYNOPSIS
+
+ dh_logrotate [debhelper options]
+
+=head1 DESCRIPTION
+
+dh_installlogrotate is a debhelper program that is responsible for installing
+logrotate config files into etc/logrotate.d in package build directories.
+Files named debian/package.logrotate are installed.
+
+=cut
+
init();
foreach my $package (@{$dh{DOPACKAGES}}) {
@@ -17,3 +34,15 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
doit("install","-m",644,$file,"$tmp/etc/logrotate.d/$package");
}
}
+
+=head1 SEE ALSO
+
+L<debhelper(1)>
+
+This program is a part of debhelper.
+
+=head1 AUTHOR
+
+Joey Hess <joeyh@debian.org>
+
+=cut