mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-07 16:44:24 +02:00
8 lines
148 B
Text
8 lines
148 B
Text
|
#!/bin/sh
|
||
|
|
||
|
if command -v resolvconf > /dev/null; then
|
||
|
exec resolvconf -a rdnssd < /var/run/rdnssd/resolv.conf
|
||
|
else
|
||
|
exec /etc/rdnssd/merge-hook
|
||
|
fi
|