diff options
Diffstat (limited to 'src')
| -rwxr-xr-x | src/services/vyos-hostsd | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/services/vyos-hostsd b/src/services/vyos-hostsd index a380f2e66..9ae7b1ea9 100755 --- a/src/services/vyos-hostsd +++ b/src/services/vyos-hostsd @@ -406,7 +406,8 @@ def validate_schema(data):  def pdns_rec_control(command): -    if not process_named_running('pdns_recursor'): +    # pdns-r process name is NOT equal to the name shown in ps +    if not process_named_running('pdns-r/worker'):          logger.info(f'pdns_recursor not running, not sending "{command}"')          return | 
