1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Add note about localhost/auth

This commit is contained in:
Michael DeHaan 2012-03-30 19:58:28 -04:00
parent 3d2a7ebd68
commit b8eeb0f906

View file

@ -59,6 +59,10 @@ try:
except: except:
import simplejson as json 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) conn = xmlrpclib.Server("http://127.0.0.1/cobbler_api", allow_none=True)
################################################### ###################################################