1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-15 11:53:59 +02:00

i2pd: fix startup

i2pd reports:
missing/unreadable config file: /etc/i2pd/i2pd.conf

Signed-off-by: Dirk Neukirchen <plntyk.lede@plntyk.name>
(cherry picked from commit 4f42a7a95a)
This commit is contained in:
Dirk Neukirchen 2021-03-03 13:46:42 +01:00 committed by Josef Schlehofer
parent 7bc80b5956
commit 1831941e73
No known key found for this signature in database
GPG Key ID: B950216FE4329F4C
2 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=i2pd
PKG_VERSION:=2.35.0
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/PurpleI2P/i2pd/tar.gz/$(PKG_VERSION)?

View File

@ -43,6 +43,7 @@ i2pd_start() {
## We need permissions
touch "$PIDFILE"
chown "$USER:adm" "$PIDFILE"
chown "$USER:adm" "$CONFFILE"
procd_open_instance
procd_set_param command "$PROG" --service --conf="$CONFFILE" --pidfile "$PIDFILE"