[Pulp-list] Colons vs equals in conf.files

2015-12-07 Thread Kodiak Firesmith
Hey Pulp Folks, Still muddling through the Pulp setup docs and noticed the docs provide examples like this: [server]host = localhost.localdomain Whereas the actual conf files seem to use colons like this: [server] host: localhost.localdomain I'm assuming the method used in the actual conf

Re: [Pulp-list] Colons vs equals in conf.files

2015-12-07 Thread Kodiak Firesmith
Thanks very much for the reply. I continued on with the setup and just like you said - it does work just fine. For the sake of user OCD, it might be something to normalize in the future, but then again that is probably dev cycles that would be better spent making Pulp even more awesome. Thanks

Re: [Pulp-list] Colons vs equals in conf.files

2015-12-07 Thread Mihai Ibanescu
Given that pulp is written in python, and it uses ConfigParser for its config files, either : or = will work just fine as separator. https://docs.python.org/2/library/configparser.html Mihai On Mon, Dec 7, 2015 at 12:00 PM, Kodiak Firesmith wrote: > Hey Pulp Folks, >