mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 19:23:24 +02:00
Am Pakfire weitergearbeitet.
CGI erweitert und mit neuen Funktionen versehen. Paketformat grundlegend geaendert. UpdateBooster gefixt. Avira+Avast als Updatequelle eingefuegt. VPN-Watch ins log.dat. DHCP-Server startet nach der Installation. Einen String im Installer verschoenert :D git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@639 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
@@ -717,7 +717,17 @@ sign_packages() {
|
||||
cd $BASEDIR/packages
|
||||
for i in `ls $BASEDIR/packages/*.ipfire`; do
|
||||
echo -n "Signing $i"
|
||||
echo $GPG_PASSPHRASE | gpg --sign --armor -u 64D96617 --passphrase-fd 0 $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
|
||||
|
||||
Reference in New Issue
Block a user