6 lines
115 B
Bash
6 lines
115 B
Bash
#!/bin/bash
|
|
|
|
if [[ -f /run/rdnssd/resolv.conf ]]; then
|
|
/usr/bin/resolvconf -a rdnssd < /run/rdnssd/resolv.conf
|
|
fi
|