From b8eeb0f9066e63192e571d0331580087e259d21b Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Fri, 30 Mar 2012 19:58:28 -0400 Subject: [PATCH] Add note about localhost/auth --- examples/scripts/cobbler_external_inventory.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/scripts/cobbler_external_inventory.py b/examples/scripts/cobbler_external_inventory.py index 6e2369123cf..62d9c99d032 100755 --- a/examples/scripts/cobbler_external_inventory.py +++ b/examples/scripts/cobbler_external_inventory.py @@ -59,6 +59,10 @@ try: except: import simplejson as json +# NOTE -- this file assumes Ansible is being accessed FROM the cobbler +# server, so it does not attempt to login with a username and password. +# this will be addressed in a future version of this script. + conn = xmlrpclib.Server("http://127.0.0.1/cobbler_api", allow_none=True) ###################################################