mirror of
https://github.com/openwrt/packages.git
synced 2025-12-19 17:11:21 +00:00
We can get rid of pipe with -n flag to sysctl. Signed-off-by: Karel Kočí <cynerd@email.cz>
7 lines
224 B
Bash
Executable File
7 lines
224 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$(sysctl -n net.ipv6.conf.lo.disable_ipv6)" = "0" ]; then
|
|
echo 'network(ip("::1") port(514) transport(udp) ip-protocol(6) )'
|
|
else
|
|
echo 'network(ip("127.0.0.1") port(514) transport(udp) ip-protocol(4) )'
|
|
fi
|