cleanfeed installation, stale pids script fix, start-innd script removal.
ci/woodpecker/tag/build Pipeline was successful

This commit is contained in:
2026-07-29 11:34:53 +05:00
parent e97be45bcc
commit 6ba17b951e
7 changed files with 43 additions and 21 deletions
-1
View File
@@ -11,7 +11,6 @@ fi
echo "* Downloading NoCeM gpg keys and ctl file..."
curl -o /inn2/etc/pgp/ncmring.gpg https://rosalind.home.xs4all.nl/nocemreg/ncmring.asc
curl -o /inn2/etc/nocem.ctl https://rosalind.home.xs4all.nl/nocemreg/ncmperm.txt
chown -R news:news /inn2/etc/nocem.ctl /inn2/etc/pgp
echo "* Enabling NoCeM processing..."
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
if [ ! -d "/inn2/etc/cleanfeed" ]; then
cp -r "/inn2/etc-default/cleanfeed" "/inn2/etc"
chown -R news:news "/inn2/etc/cleanfeed"
fi
if [ ! -d "/inn2/spool/cleanfeed" ]; then
mkdir -p "/inn2/spool/cleanfeed"
chown -R news:news "/inn2/spool/cleanfeed"
fi
chown -R news:news /var/www
Regular → Executable
+1 -1
View File
@@ -1,3 +1,3 @@
#!/bin/sh
rm "/inn2/run/*.pid"
rm "/inn2/run/*.pid" || exit 0