]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - tools/make-functions
Dem Installer ne bessere Rechnung fuer die Diskgroessen bekommen.
[people/pmueller/ipfire-2.x.git] / tools / make-functions
index d9e81ae81972d91ae81e50eb98d7b93ecc11f0da..2a76148b3cdf11668f337c7bceb4a5fe4302a6c4 100644 (file)
@@ -487,7 +487,6 @@ batch_script() {
        evaluate 1 mail_me ISO
        
        echo -ne "### UPLOADING PAKS"
-       $0 packages sign
        $0 upload paks
        evaluate 1 mail_me PAKS
 
@@ -713,35 +712,3 @@ update_langs() {
                $BASEDIR/tools/check_langs.sh > $BASEDIR/doc/language_missings
                beautify message DONE
 }
-
-sign_packages() {
-       if gpg --list-key 64D96617 ; then
-               if [ -d "$BASEDIR/packages" ]; then
-                       cd $BASEDIR/packages
-               for i in `ls $BASEDIR/packages/*.ipfire`; do
-                       echo -n "Signing $i"
-                               echo $GPG_PASSPHRASE | gpg --compress-algo 3 --sign --armor -u 64D96617 --passphrase-fd 0 $i
-                               if [ "$?" -eq "0" ]; then
-                                       beautify message DONE
-                                       mv -f $i.asc $i
-                               else
-                                       beautify message FAIL
-                               fi
-               done
-               for i in `ls $BASEDIR/packages/meta-*`; do
-                       echo -n "Signing $i"
-                               echo $GPG_PASSPHRASE | gpg --clearsign --armor -u 64D96617 --passphrase-fd 0 $i
-                               if [ "$?" -eq "0" ]; then
-                                       beautify message DONE
-                                       mv -f $i.asc $i
-                               else
-                                       beautify message FAIL
-                               fi
-               done
-               cd -
-       fi
-       else
-               echo -n "You don't have the secret key to sign ipfire's packages!"
-               beautify message FAIL
-       fi
-}