diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2005-03-10 08:37:23 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2005-03-10 08:37:23 +0000 |
commit | 634a23dea35d73cfec3d9a10acb718fa350f0295 (patch) | |
tree | 24ab37b128a9024e6818a8eceddd1c2d196684c0 | |
parent | Fixed some error messages on spamcop script (diff) | |
download | misc-634a23dea35d73cfec3d9a10acb718fa350f0295.tar.gz misc-634a23dea35d73cfec3d9a10acb718fa350f0295.tar.bz2 misc-634a23dea35d73cfec3d9a10acb718fa350f0295.zip |
Fixec SVN daily and monthly scripts
svn path=/z-distfiles/; revision=99
-rwxr-xr-x | z-distfiles/scripts-gw-1.1/SVN-daily | 1 | ||||
-rwxr-xr-x | z-distfiles/scripts-gw-1.1/SVN-monthly | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/z-distfiles/scripts-gw-1.1/SVN-daily b/z-distfiles/scripts-gw-1.1/SVN-daily index 63e39b0..2ab0df1 100755 --- a/z-distfiles/scripts-gw-1.1/SVN-daily +++ b/z-distfiles/scripts-gw-1.1/SVN-daily @@ -9,6 +9,7 @@ done for FILE in /var/svn/dump/*.bz2 do + [ -f $FILE.gpg ] && rm $FILE.gpg [ -f $FILE ] && /usr/bin/gpg --batch --no-tty --default-recipient post@gunnarwrobel.de --encrypt-files $FILE && rm $FILE done diff --git a/z-distfiles/scripts-gw-1.1/SVN-monthly b/z-distfiles/scripts-gw-1.1/SVN-monthly index c7deb0c..3f26b15 100755 --- a/z-distfiles/scripts-gw-1.1/SVN-monthly +++ b/z-distfiles/scripts-gw-1.1/SVN-monthly @@ -9,6 +9,7 @@ done for FILE in /var/svn/dump/*.bz2 do + [ -f $FILE.gpg ] && rm $FILE.gpg [ -f $FILE ] && /usr/bin/gpg --batch --no-tty --default-recipient post@gunnarwrobel.de --encrypt-files $FILE && rm $FILE done |