From fae2dca9dcc7b92e3ed4f317adce6acd787dcd6b Mon Sep 17 00:00:00 2001 From: Roman Hargrave Date: Mon, 15 Oct 2018 11:23:58 -0500 Subject: [PATCH] Add operatingSystemType to posix config (#808) * Add operatingSystemType to posix config * Downcase operatingsystemtype --- src/gam.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gam.py b/src/gam.py index 6e8fa377..1f4eabe5 100755 --- a/src/gam.py +++ b/src/gam.py @@ -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