Skip to content

Commit

Permalink
fixes EUCA-2281 by exposing dns ip address property
Browse files Browse the repository at this point in the history
  • Loading branch information
John Donnelly authored and John Donnelly committed Jan 3, 2013
1 parent 0a33825 commit 569f9c8
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -98,9 +98,10 @@ public class SystemConfiguration extends AbstractPersistent {
@ConfigurableField( description = "Domain name to use for DNS." )
@Column( name = "dns_domain" )
private String dnsDomain;
@ConfigurableField( description = "Nameserver address." )
@ConfigurableField( description = "Nameserver hostname." )
@Column( name = "nameserver" )
private String nameserver;
@ConfigurableField( description = "Nameserver ip address." )
@Column( name = "ns_address" )
private String nameserverAddress;

Expand Down

0 comments on commit 569f9c8

Please sign in to comment.