diff options
author | Martin Kosek <mkosek@redhat.com> | 2012-02-10 12:54:49 +0100 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2012-02-24 09:40:40 +0100 |
commit | 2cf58937615c28527d1c78f883dad8726331c6df (patch) | |
tree | f1d696b248406bb2daa50c4e4c0e9a275bebf035 /API.txt | |
parent | 1816643a43802ca2a353930cb2bbb2781b39c80f (diff) | |
download | freeipa-2cf58937615c28527d1c78f883dad8726331c6df.tar.gz freeipa-2cf58937615c28527d1c78f883dad8726331c6df.tar.xz freeipa-2cf58937615c28527d1c78f883dad8726331c6df.zip |
Global DNS options
Implement API for DNS global options supported in bind-dyndb-ldap.
Currently, global DNS option overrides any relevant option in
named.conf. Thus they are not filled by default they are left as
a possibility for a user.
Bool encoding had to be fixed so that Bool LDAP attribute can also
be deleted and not just set to True or False.
https://fedorahosted.org/freeipa/ticket/2216
Diffstat (limited to 'API.txt')
-rw-r--r-- | API.txt | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -610,6 +610,28 @@ arg: Str('hostname') output: Output('summary', (<type 'unicode'>, <type 'NoneType'>), None) output: Output('result', <type 'bool'>, None) output: Output('value', <type 'unicode'>, None) +command: dnsconfig_mod +args: 0,8,3 +option: Str('idnsforwarders', attribute=True, autofill=False, cli_name='forwarder', csv=True, multivalue=True, required=False) +option: Str('setattr*', cli_name='setattr', exclude='webui') +option: Str('addattr*', cli_name='addattr', exclude='webui') +option: Str('delattr*', cli_name='delattr', exclude='webui') +option: Flag('rights', autofill=True, default=False) +option: Flag('all', autofill=True, cli_name='all', default=False, exclude='webui') +option: Flag('raw', autofill=True, cli_name='raw', default=False, exclude='webui') +option: Str('version?', exclude='webui') +output: Output('summary', (<type 'unicode'>, <type 'NoneType'>), None) +output: Entry('result', <type 'dict'>, Gettext('A dictionary representing an LDAP entry', domain='ipa', localedir=None)) +output: Output('value', <type 'unicode'>, None) +command: dnsconfig_show +args: 0,4,3 +option: Flag('rights', autofill=True, default=False) +option: Flag('all', autofill=True, cli_name='all', default=False, exclude='webui') +option: Flag('raw', autofill=True, cli_name='raw', default=False, exclude='webui') +option: Str('version?', exclude='webui') +output: Output('summary', (<type 'unicode'>, <type 'NoneType'>), None) +output: Entry('result', <type 'dict'>, Gettext('A dictionary representing an LDAP entry', domain='ipa', localedir=None)) +output: Output('value', <type 'unicode'>, None) command: dnsrecord_add args: 2,114,3 arg: Str('dnszoneidnsname', cli_name='dnszone', query=True, required=True) |