Hide Forgot
Description of problem: the ipa-config option does not allow you to change more than one default option at a time ... # ipa config-mod --searchtimelimit=2 searchrecordslimit=100 --maxusername=32 ipa: ERROR: command 'config_mod' takes no arguments # ipa config-mod --searchtimelimit=2 searchrecordslimit=100 ipa: ERROR: command 'config_mod' takes no arguments # ipa config-mod --searchtimelimit=2 Max username length: 11 Home directory base: CrB2n9xHhmiahl210YmV1botykMvFP9naVSyFXOOWdPkFgalnECmDvLI3zrF6N Default shell: //9p+qeY.lBEKVwvQ3zLMLiPo4udZ5S2dAfetgjE6JLn0k_AwR2 Default users group: ipausers Default e-mail domain: wFwzLjPzk.com Search time limit: 2 Search size limit: -1 User search fields: uid,givenname,sn,ou,title,homephone Group search fields: cn,description Migration mode: FALSE Certificate Subject base: O=TESTRELM It would be nice if you could change more than 1 at a time Version-Release number of selected component (if applicable): ipa-server-2.0-0.2011011806gitec3e7f1.fc14.i686 ipa-admintools-2.0-0.2011011806gitec3e7f1.fc14.i686 How reproducible: always Steps to Reproduce: 1. see description 2. 3. Actual results: error message stating only one arguement allowed Expected results: all defined options updated Additional info:
https://fedorahosted.org/freeipa/ticket/800
you're missing the dashes for searchrecordslimit=100, can you re-test?
ooppss that was it ... however the error message is incorrect ... is should state invalid paramater option instead of takes no arguments ipa config-mod --searchtimelimit=2 searchrecordslimit=100 ipa: ERROR: command 'config_mod' takes no arguments
In *nix things being with a dash are options. Things without dashes are arguments even if they have an embedded = sign. For example: $ ls --color=always [ provides a colored list in cwd ] versus $ ls color=always ls: cannot access color=always: No such file or directory