Skip to content

Commit

Permalink
Allow CNAME Entries
Browse files Browse the repository at this point in the history
This patch fixes the problem that target hostnames are not only
verified, but converted to IPv4 addresses which causes an unwanted,
implicit change from CNAME to A records.
  • Loading branch information
lkiesow committed Jul 1, 2024
1 parent b65bab5 commit c10da39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proteuscmd/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def dns_get(proteus, view, domain):
@dns.command(name='set')
@click.option('--view', **__view_args)
@click.argument('domain')
@click.argument('target', type=IPV4_TYPE)
@click.argument('target')
@with_proteus
def dns_set(proteus, view, domain, target):
'''Set DNS record in Proteus
Expand Down

0 comments on commit c10da39

Please sign in to comment.