diff options
author | Michael Imhof <tantive@gentoo.org> | 2005-12-29 00:11:49 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2005-12-29 00:11:49 +0000 |
commit | 8a119a45ba387d946171aa90d8e1bc7019a2930b (patch) | |
tree | 516c0c04caca420b8470d9e79ef305fee610a16e /app-admin/gentoo-rsync-mirror | |
parent | update (diff) | |
download | gentoo-2-8a119a45ba387d946171aa90d8e1bc7019a2930b.tar.gz gentoo-2-8a119a45ba387d946171aa90d8e1bc7019a2930b.tar.bz2 gentoo-2-8a119a45ba387d946171aa90d8e1bc7019a2930b.zip |
Removed a dos-style carriage return added by a patch. Closes #116096.
(Portage version: 2.1_pre2)
Diffstat (limited to 'app-admin/gentoo-rsync-mirror')
-rw-r--r-- | app-admin/gentoo-rsync-mirror/ChangeLog | 6 | ||||
-rw-r--r-- | app-admin/gentoo-rsync-mirror/files/rsync-gentoo-portage.sh | 20 |
2 files changed, 15 insertions, 11 deletions
diff --git a/app-admin/gentoo-rsync-mirror/ChangeLog b/app-admin/gentoo-rsync-mirror/ChangeLog index 1362414001ae..3bd637f096ed 100644 --- a/app-admin/gentoo-rsync-mirror/ChangeLog +++ b/app-admin/gentoo-rsync-mirror/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/gentoo-rsync-mirror # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoo-rsync-mirror/ChangeLog,v 1.27 2005/11/25 16:38:18 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoo-rsync-mirror/ChangeLog,v 1.28 2005/12/29 00:11:49 tantive Exp $ + + 29 Dec 2005; Michael Imhof <tantive@gentoo.org> + files/rsync-gentoo-portage.sh: + Removed a dos-style carriage return added by a patch. Closes #116096. 25 Nov 2005; Tom Gall <tgall@gentoo.org> gentoo-rsync-mirror-1.0-r4.ebuild: 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 8224f0c2aa54..e053fadab1ed 100644 --- a/app-admin/gentoo-rsync-mirror/files/rsync-gentoo-portage.sh +++ b/app-admin/gentoo-rsync-mirror/files/rsync-gentoo-portage.sh @@ -1,11 +1,11 @@ -#!/bin/bash
-
-source /etc/rsync/gentoo-mirror.conf
-
-echo "Started update at" `date` >> $0.log 2>&1
-logger -t rsync "re-rsyncing the gentoo-portage tree"
-${RSYNC} ${OPTS} ${SRC} ${DST} >> $0.log 2>&1
-logger -t rsync "deleting spurious Changelog files"
-find ${DST} -iname ".ChangeLog*" | xargs rm -rf
-
+#!/bin/bash + +source /etc/rsync/gentoo-mirror.conf + +echo "Started update at" `date` >> $0.log 2>&1 +logger -t rsync "re-rsyncing the gentoo-portage tree" +${RSYNC} ${OPTS} ${SRC} ${DST} >> $0.log 2>&1 +logger -t rsync "deleting spurious Changelog files" +find ${DST} -iname ".ChangeLog*" | xargs rm -rf + echo "End: "`date` >> $0.log 2>&1
\ No newline at end of file |