Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.216.167.229
#!/bin/sh
## Sourced, not exec'ed, but helps syntax highlighting
#
# Script fragment disabling make_resolv_conf(),
# to be used in conjunction with dhclient-exit-hooks.d/resolved
#
if systemctl is-enabled systemd-resolved > /dev/null 2>&1; then
# Undefine the nasty default make_resolv_conf() to avoid it overriding
# /etc/resolv.conf (or /run/systemd/resolve/stub-resolv.conf)
make_resolv_conf() { : ; }
fi
|