/[smeserver]/builds_bin/release_rpms
ViewVC logotype

Annotation of /builds_bin/release_rpms

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Mon Oct 10 03:15:53 2005 UTC (18 years, 8 months ago) by gordonr
Branch: MAIN
Filename cleanup

1 gordonr 1.1 #!/bin/sh
2    
3     for file in *.rpm
4     do
5     arch=$(basename $file .rpm | sed -e 's/.*\.//')
6    
7     case $arch in
8     src) TARGET=/builds/rpms/SRPMS ;;
9    
10     *) TARGET=/builds/rpms/RPMS/$arch ;;
11     esac
12    
13     if [ -f $TARGET/$file ]
14     then
15     echo "$TARGET/$file exists"
16     continue
17     else
18     [ -d $TARGET ] && mkdir -p $TARGET
19    
20     # XXX - FIXME - Force signing of RPMs before release
21     rpm -K $file
22     cp $file TARGET
23     fi
24     done

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed