Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make 'option_value' for dnsmasq optional #960

Merged
merged 2 commits into from
Jan 2, 2023
Merged

Commits on Jul 9, 2022

  1. Make 'option_value' for dnsmasq optional

    There are a number of dnsmasq options - like 'no-hosts' that
    do not require a value.
    This change will make sure that an entry:
    
    resource "libvirt_network" "my_net" {
    ...
      dnsmasq_options {
        options {
           option_name = "no-hosts"
           }
      }
    }
    
    will become:
    
    no-hosts
    
    in the corresponding dnsmasq.conf file.
    
    Signed-off-by: Egbert Eich <eich@suse.com>
    e4t committed Jul 9, 2022
    Configuration menu
    Copy the full SHA
    b2fb7e3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    986a198 View commit details
    Browse the repository at this point in the history