Changeset 931 for branches/secondaryzones/dns-rpc.cgi
- Timestamp:
- 08/28/25 13:42:55 (9 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/secondaryzones/dns-rpc.cgi
r906 r931 1957 1957 =item reverse 1958 1958 1959 Set to C<y> if you want to get/set the status for a reverse zone 1959 Set to C<y> if you want to get/set the status for a reverse zone. Defaults 1960 to C<n>. 1961 1962 =item secondary 1963 1964 Set to C<y> if you want to get/set the status of a seconary zone. Defaults 1965 to C<n>. C<reverse> has no meaning if C<secondary> is 'y'. 1960 1966 1961 1967 =item status … … 1972 1978 1973 1979 $args{reverse} = 'n' if !$args{reverse} || $args{reverse} ne 'y'; 1974 my @arglist = ($args{zoneid}, $args{reverse}); 1975 push @arglist, $args{status} if defined($args{status}); 1976 1977 my $status = $dnsdb->zoneStatus(@arglist); 1980 $args{secondary} = 'n' if !$args{secondary} || $args{secondary} ne 'y'; 1981 1982 my $status = $dnsdb->zoneStatus(%args); 1978 1983 } 1979 1984
Note:
See TracChangeset
for help on using the changeset viewer.