privoxy: fix postinst missing $
fixes: #19949 Signed-off-by: Josh Powers <powersj@fastmail.com>
This commit is contained in:
parent
7bcc02e7c9
commit
46e4def61f
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ endef
|
|||
define Package/privoxy/postinst
|
||||
#!/bin/sh
|
||||
# if exists, update previous version entry missing protocol
|
||||
(grep -E "privoxy.*8118$" $${IPKG_INSTROOT}/etc/services) > /dev/null \
|
||||
(grep -E "privoxy.*8118$$" $${IPKG_INSTROOT}/etc/services) > /dev/null \
|
||||
&& sed -i "s/privoxy.*8118/privoxy\t\t8118\/tcp/" $${IPKG_INSTROOT}/etc/services
|
||||
|
||||
# add missing tcp and udp entries
|
||||
|
|
Loading…
Reference in a new issue