mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
added signature to release 0.9.76, updated main page, small modifs for mkasc.sh
This commit is contained in:
parent
8bccd686fd
commit
e108976f5a
2 changed files with 17 additions and 1 deletions
|
|
@ -272,9 +272,18 @@ so uninstalling without doing the above should not cause issues.
|
|||
|
||||
## Latest released version: 0.9.76
|
||||
|
||||
This is and emargency release, many thanks to @kmk3, @SkewedZeppelin, and all
|
||||
the Arch Linux users that reported the problem.
|
||||
|
||||
Due to an xorg change in xkeyboard-config package (https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config),
|
||||
many/most xorg programs were rendered completely broken when running under 0.9.74.
|
||||
|
||||
|
||||
## Current development version: 0.9.77
|
||||
|
||||
|
||||
|
||||
|
||||
### Landlock support - ongoing/experimental
|
||||
|
||||
* Added on #6078, which is based on #5315 from ChrysoliteAzalea/landlock
|
||||
|
|
|
|||
9
mkasc.sh
9
mkasc.sh
|
|
@ -10,6 +10,13 @@ printf 'Calculating SHA256 for all files in /transfer - %s version %s' "$TARNAME
|
|||
cd /transfer || exit 1
|
||||
sha256sum ./* > "$TARNAME-$VERSION-unsigned"
|
||||
gpg --clearsign --digest-algo SHA256 < "$TARNAME-$VERSION-unsigned" > "$TARNAME-$VERSION.asc"
|
||||
gpg --verify "$TARNAME-$VERSION.asc"
|
||||
gpg --detach-sign --armor "$TARNAME-$VERSION.tar.xz"
|
||||
rm "$TARNAME-$VERSION-unsigned"
|
||||
|
||||
echo
|
||||
echo
|
||||
echo "*** Verifying $TARNAME-$VERSION.tar.xz.asc ***"
|
||||
gpg --verify "$TARNAME-$VERSION.tar.xz.asc"
|
||||
echo "*** Verifying $TARNAME-$VERSION.asc ***"
|
||||
gpg --verify "$TARNAME-$VERSION.asc"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue