diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2005-02-09 11:41:48 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2005-02-09 11:41:48 +0000 |
commit | 2cab0149912b76b49af5bbcc7043de2d2d01a9a8 (patch) | |
tree | 20d14f29acc8f98e03ef05b1f14ec957b60f5384 | |
parent | svn-add svn-del fixes (diff) | |
download | misc-2cab0149912b76b49af5bbcc7043de2d2d01a9a8.tar.gz misc-2cab0149912b76b49af5bbcc7043de2d2d01a9a8.tar.bz2 misc-2cab0149912b76b49af5bbcc7043de2d2d01a9a8.zip |
Fixes for the gpg encryption
svn path=/z-distfiles/; revision=93
-rwxr-xr-x | z-distfiles/scripts-gw-1.1/SVN-daily | 2 | ||||
-rwxr-xr-x | z-distfiles/scripts-gw-1.1/SVN-monthly | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/z-distfiles/scripts-gw-1.1/SVN-daily b/z-distfiles/scripts-gw-1.1/SVN-daily index 4c73db9..63e39b0 100755 --- a/z-distfiles/scripts-gw-1.1/SVN-daily +++ b/z-distfiles/scripts-gw-1.1/SVN-daily @@ -9,7 +9,7 @@ done for FILE in /var/svn/dump/*.bz2 do - [ -f $FILE ] && /usr/bin/gpg --default-recipient post@gunnarwrobel.de --encrypt-files $FILE && rm $FILE + [ -f $FILE ] && /usr/bin/gpg --batch --no-tty --default-recipient post@gunnarwrobel.de --encrypt-files $FILE && rm $FILE done chown -R apache:apache /var/svn/dump diff --git a/z-distfiles/scripts-gw-1.1/SVN-monthly b/z-distfiles/scripts-gw-1.1/SVN-monthly index e98b6e9..c7deb0c 100755 --- a/z-distfiles/scripts-gw-1.1/SVN-monthly +++ b/z-distfiles/scripts-gw-1.1/SVN-monthly @@ -9,7 +9,7 @@ done for FILE in /var/svn/dump/*.bz2 do - [ -f $FILE ] && /usr/bin/gpg --default-recipient post@gunnarwrobel.de --encrypt-files $FILE && rm $FILE + [ -f $FILE ] && /usr/bin/gpg --batch --no-tty --default-recipient post@gunnarwrobel.de --encrypt-files $FILE && rm $FILE done chown -R apache:apache /var/svn/dump |