diff options
author | Michael Imhof <tantive@gentoo.org> | 2003-12-06 13:11:17 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2003-12-06 13:11:17 +0000 |
commit | e57a34b5491781bec5e8897767e61bcc8a0979cb (patch) | |
tree | 82877f7fbaf5419272faa6ed4253bad2021cee3e /app-admin | |
parent | resubmit good copy (diff) | |
download | historical-e57a34b5491781bec5e8897767e61bcc8a0979cb.tar.gz historical-e57a34b5491781bec5e8897767e61bcc8a0979cb.tar.bz2 historical-e57a34b5491781bec5e8897767e61bcc8a0979cb.zip |
Changed the script to log into /var/log
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/gentoo-rsync-mirror/ChangeLog | 5 | ||||
-rw-r--r-- | app-admin/gentoo-rsync-mirror/Manifest | 4 | ||||
-rw-r--r-- | app-admin/gentoo-rsync-mirror/files/rsync-gentoo-portage.sh | 6 |
3 files changed, 9 insertions, 6 deletions
diff --git a/app-admin/gentoo-rsync-mirror/ChangeLog b/app-admin/gentoo-rsync-mirror/ChangeLog index 56d1c102c8fd..b899f370be57 100644 --- a/app-admin/gentoo-rsync-mirror/ChangeLog +++ b/app-admin/gentoo-rsync-mirror/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-admin/gentoo-rsync-mirror # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoo-rsync-mirror/ChangeLog,v 1.9 2003/09/20 06:16:15 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoo-rsync-mirror/ChangeLog,v 1.10 2003/12/06 13:11:07 tantive Exp $ + + 06 Dec 2003; Michael Imhof <tantive@gentoo.org> : + Changed the script to log to /var/log. 19 Sep 2003; Seemant Kulleen <seemant@gentoo.org> gentoo-rsync-mirror-1.0-r2.ebuild: diff --git a/app-admin/gentoo-rsync-mirror/Manifest b/app-admin/gentoo-rsync-mirror/Manifest index 7c7311fe70cc..9aa110d5aa82 100644 --- a/app-admin/gentoo-rsync-mirror/Manifest +++ b/app-admin/gentoo-rsync-mirror/Manifest @@ -1,8 +1,8 @@ MD5 beb9efce81ae2c582a621528fc783095 metadata.xml 373 MD5 e5fb37e976cd304902dbe5f73cb379cf gentoo-rsync-mirror-1.0-r2.ebuild 1574 -MD5 abe82d2ef0e16d04bc1440b71bbe97b7 ChangeLog 1244 +MD5 b9283ebf53866da626387893a2d3d0bb ChangeLog 1339 MD5 53fd9d68b1864d67464948ef4b4dc741 files/rsyncd.init 546 -MD5 45e53c3902299ff2c47b7e3a381119ac files/rsync-gentoo-portage.sh 632 +MD5 5833305e6d8aa92eea275ca18a61713f files/rsync-gentoo-portage.sh 659 MD5 d188104c33c5333b9eb1a42478987326 files/rsyncd.conf 503 MD5 508f4e735f2fbacd4a123c002c72e545 files/rsyncd.motd 44 MD5 d41d8cd98f00b204e9800998ecf8427e files/digest-gentoo-rsync-mirror-1.0-r2 0 diff --git a/app-admin/gentoo-rsync-mirror/files/rsync-gentoo-portage.sh b/app-admin/gentoo-rsync-mirror/files/rsync-gentoo-portage.sh index 3c69d2998eb2..5f01e69a3719 100644 --- a/app-admin/gentoo-rsync-mirror/files/rsync-gentoo-portage.sh +++ b/app-admin/gentoo-rsync-mirror/files/rsync-gentoo-portage.sh @@ -8,9 +8,9 @@ OPTS="--quiet --recursive --links --perms --times --devices --compress --delete SRC="rsync://rsync.gentoo.org/gentoo-portage" DST="/opt/gentoo-rsync/portage/" -echo "Started update at" `date` >> $0.log 2>&1 +echo "Started update at" `date` >> /var/log/$0.log 2>&1 logger -t rsync "re-rsyncing the gentoo-portage tree" -${RSYNC} ${OPTS} ${SRC} ${DST} >> $0.log 2>&1 +${RSYNC} ${OPTS} ${SRC} ${DST} >> /var/log/$0.log 2>&1 -echo "End: "`date` >> $0.log 2>&1 +echo "End: "`date` >> /var/log/$0.log 2>&1 |