Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
14d19a949f
|
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) but do not follows semantic versioning as it is useless in this type of project.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) but do not follows semantic versioning as it is useless in this type of project.
|
||||||
|
|
||||||
|
## [2.7.4-6] - 2026-08-09
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
* gpg configuration to skip keyboxd, so importing nocem gpg keys will work.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* nocem keyring will be removed and re-imported every container launch.
|
||||||
|
|
||||||
## [2.7.4-5] - 2026-08-02
|
## [2.7.4-5] - 2026-08-02
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@@ -54,6 +64,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
|
|||||||
|
|
||||||
Initial container release with inn 2.7.4 built with perl/python/sqlite support.
|
Initial container release with inn 2.7.4 built with perl/python/sqlite support.
|
||||||
|
|
||||||
|
[2.7.4-6]: https://code.pztrn.name/containers/inn2/compare/2.7.4-5...2.7.4-6
|
||||||
[2.7.4-5]: https://code.pztrn.name/containers/inn2/compare/2.7.4-4...2.7.4-5
|
[2.7.4-5]: https://code.pztrn.name/containers/inn2/compare/2.7.4-4...2.7.4-5
|
||||||
[2.7.4-4]: https://code.pztrn.name/containers/inn2/compare/2.7.4-3...2.7.4-4
|
[2.7.4-4]: https://code.pztrn.name/containers/inn2/compare/2.7.4-3...2.7.4-4
|
||||||
[2.7.4-3]: https://code.pztrn.name/containers/inn2/compare/2.7.4-2...2.7.4-3
|
[2.7.4-3]: https://code.pztrn.name/containers/inn2/compare/2.7.4-2...2.7.4-3
|
||||||
|
|||||||
Executable
+9
@@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
if [ -f "/etc/gpg/gpg.conf" ]; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -rf /etc/gpg || exit 0
|
||||||
|
mkdir -p /etc/gpg
|
||||||
|
echo "use-keyboxd 0" > /etc/gpg/gpg.conf
|
||||||
@@ -1,16 +1,14 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
if [ -f "/inn2/etc/pgp/ncmring.gpg" ]; then
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -d "/inn2/etc/pgp" ]; then
|
if [ ! -d "/inn2/etc/pgp" ]; then
|
||||||
mkdir -p "/inn2/etc/pgp"
|
mkdir -p "/inn2/etc/pgp"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "* Downloading NoCeM gpg keys and ctl file..."
|
echo "* Downloading NoCeM gpg keys and ctl file..."
|
||||||
|
|
||||||
curl -o /inn2/etc/pgp/ncmring.gpg https://rosalind.home.xs4all.nl/nocemreg/ncmring.asc
|
rm /inn2/etc/pgp/ncmring.gpg
|
||||||
|
curl -o /inn2/etc/pgp/ncmring.gpg.source https://rosalind.home.xs4all.nl/nocemreg/ncmring.asc
|
||||||
|
gpg --no-default-keyring --keyring /inn2/etc/pgp/ncmring.gpg --import /inn2/etc/pgp/ncmring.gpg.source
|
||||||
chown -R news:news /inn2/etc/nocem.ctl /inn2/etc/pgp
|
chown -R news:news /inn2/etc/nocem.ctl /inn2/etc/pgp
|
||||||
|
|
||||||
echo "* Enabling NoCeM processing..."
|
echo "* Enabling NoCeM processing..."
|
||||||
|
|||||||
Reference in New Issue
Block a user