diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2005-09-03 09:26:50 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2005-09-03 09:26:50 +0000 |
commit | 30e8e1d88a91c541fbb61c7f3b3e254899261875 (patch) | |
tree | 78c1c05df20a016071ee1cb4f7504c9877e7d745 /z-distfiles/scripts-gw-1.1/SVN-monthly | |
parent | Preparing new scripts-gw release (diff) | |
download | misc-30e8e1d88a91c541fbb61c7f3b3e254899261875.tar.gz misc-30e8e1d88a91c541fbb61c7f3b3e254899261875.tar.bz2 misc-30e8e1d88a91c541fbb61c7f3b3e254899261875.zip |
Reorganization of distfiles
svn path=/local/; revision=332
Diffstat (limited to 'z-distfiles/scripts-gw-1.1/SVN-monthly')
-rwxr-xr-x | z-distfiles/scripts-gw-1.1/SVN-monthly | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/z-distfiles/scripts-gw-1.1/SVN-monthly b/z-distfiles/scripts-gw-1.1/SVN-monthly deleted file mode 100755 index 3f26b15..0000000 --- a/z-distfiles/scripts-gw-1.1/SVN-monthly +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -BIN_DUMP="/usr/sbin/SVN-dump" - -for REPOSITORY in /var/svn/repos/* - do - $BIN_DUMP $REPOSITORY /var/svn/dump/`basename $REPOSITORY`.dump full -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 - -chown -R apache:apache /var/svn/dump -chmod 750 /var/svn/dump -chmod 660 /var/svn/dump/* - |