|
Lines 60-66
jellyfin_precmd() {
Link Here
|
| 60 |
# .NET 6+ use dual mode sockets to avoid the separate AF handling. |
60 |
# .NET 6+ use dual mode sockets to avoid the separate AF handling. |
| 61 |
# disable .NET use of V6 if no ipv6 is configured. |
61 |
# disable .NET use of V6 if no ipv6 is configured. |
| 62 |
# See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=259194#c17 |
62 |
# See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=259194#c17 |
| 63 |
ifconfig | grep -q inet6 |
63 |
ifconfig -a -u -G lo | grep -q inet6 |
| 64 |
if [ $? == 1 ]; then |
64 |
if [ $? == 1 ]; then |
| 65 |
export DOTNET_SYSTEM_NET_DISABLEIPV6=1 |
65 |
export DOTNET_SYSTEM_NET_DISABLEIPV6=1 |
| 66 |
fi |
66 |
fi |
| 67 |
- |
|
|