diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/logrotate | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2 |
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/logrotate')
-rw-r--r-- | abs/core-testing/logrotate/PKGBUILD | 37 | ||||
-rw-r--r-- | abs/core-testing/logrotate/logrotate.conf | 28 | ||||
-rwxr-xr-x | abs/core-testing/logrotate/logrotate.cron.daily | 3 |
3 files changed, 0 insertions, 68 deletions
diff --git a/abs/core-testing/logrotate/PKGBUILD b/abs/core-testing/logrotate/PKGBUILD deleted file mode 100644 index 16a389a..0000000 --- a/abs/core-testing/logrotate/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ -# Maintainer: Aaron Griffin <aaron@archlinux.org> -# Contributor: Judd Vinet <jvinet@zeroflux.org> - -pkgname=logrotate -pkgver=3.7.5 -pkgrel=10 -pkgdesc="Rotates system logs automatically" -url='http://rhlinux.redhat.com' -arch=(i686 x86_64) -license=('GPL') -groups=('base') -depends=('popt' 'cron' 'gzip') -backup=('etc/logrotate.conf') - -# The source is apparently a CVS checkout only. Create the tarball like so: -# cvs -d :pserver:anonymous@rhlinux.redhat.com:/usr/local/CVS co logrotate -# cd logrotate/ -# make create-archive -# Ensure this tarball is places in other/logrotate/ - -source=(ftp://ftp.archlinux.org/other/logrotate/${pkgname}-${pkgver}.tar.gz - logrotate.conf logrotate.cron.daily) -md5sums=('a1a3ea2f1d80e67e902c024bbdef616a' - 'c8b915903825befc401797b7620f249e' - '8e23d5d4cc29b1e055b24df87e355cdc') - -build() { - cd $startdir/src/${pkgname}-${pkgver} - - sed -i 's|#define DEFAULT_MAIL_COMMAND .*|#define DEFAULT_MAIL_COMMAND "/usr/bin/mail"|'\ - config.h - make || return 1 - make PREFIX=$startdir/pkg install - install -D -m644 ../logrotate.conf $startdir/pkg/etc/logrotate.conf - install -D -m744 ../logrotate.cron.daily $startdir/pkg/etc/cron.daily/logrotate -} diff --git a/abs/core-testing/logrotate/logrotate.conf b/abs/core-testing/logrotate/logrotate.conf deleted file mode 100644 index fde947b..0000000 --- a/abs/core-testing/logrotate/logrotate.conf +++ /dev/null @@ -1,28 +0,0 @@ -# see "man logrotate" for details -# rotate log files weekly -weekly - -# keep 4 weeks worth of backlogs -rotate 4 - -# create new (empty) log files after rotating old ones -create - -# uncomment this if you want your log files compressed -#compress - -# Logs are moved into directory for rotation -# olddir /var/log/archive - -# Ignore pacman saved files -tabooext + .pacorig .pacnew .pacsave - -# Arch packages drop log rotation information into this directory -include /etc/logrotate.d - -/var/log/wtmp { - monthly - create 0664 root root - rotate 1 -} - diff --git a/abs/core-testing/logrotate/logrotate.cron.daily b/abs/core-testing/logrotate/logrotate.cron.daily deleted file mode 100755 index e8ab921..0000000 --- a/abs/core-testing/logrotate/logrotate.cron.daily +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -/usr/sbin/logrotate /etc/logrotate.conf |