Fix netconfig & os post variables to be named what the server expects

This commit is contained in:
Nick Hurley 2013-02-06 14:54:26 -08:00
Родитель 1d98420885
Коммит 609ce26dd1
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -105,8 +105,8 @@ def srpush(sha, host, ldap, password, netconfigs, operating_systems):
post = {'srid': srid,
'sha': sha,
'ldap': ldap,
'netconfigs': netconfigs,
'operating_systems': operating_systems}
'netconfig': netconfigs,
'operating_system': operating_systems}
req = urllib2.Request(url, data=urllib.urlencode(post, doseq=True))
handler = urllib2.urlopen(req)