Add operatingSystemType to posix config (#808)

* Add operatingSystemType to posix config

* Downcase operatingsystemtype
This commit is contained in:
Roman Hargrave
2018-10-15 11:23:58 -05:00
committed by Jay Lee
parent 7112a42c96
commit fae2dca9dc

View File

@@ -6930,6 +6930,9 @@ def getUserAttributes(i, cd, updateCmd):
elif myopt in [u'username', u'name']:
posix[u'username'] = sys.argv[i+1]
i += 2
elif myopt in [u'os', u'operatingsystemtype']:
posix[u'operatingSystemType'] = sys.argv[i+1]
i += 2
elif myopt in [u'endposix']:
i += 1
break