We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72e2e09 commit 1f6fa75Copy full SHA for 1f6fa75
backend/lib/ddns_resolver/ddns_resolver.js
@@ -48,7 +48,7 @@ const ddnsResolver = {
48
* @returns {Promise} resolves to the IPV4 address of the host
49
*/
50
_queryHost: (host) => {
51
- return utils.execSafe('getent', ['ahostsv4', 'hosts', host])
+ return utils.execSafe('getent', ['ahostsv4', host])
52
.then((result) => {
53
if (result.length < 8 || !/^(\d{1,3}\.){3}\d{1,3}$/.test(result)) {
54
logger.error(`IPV4 lookup for ${host} returned invalid output: ${result}`);
0 commit comments