I was actually successful at installing Maya 2016 using munki as a
deployment method. The process that I used was a follows:
1. Take the "Install Maya 2016.app" package and nest inside a package that
copies it to the /tmp folder. Import the resulting package into munki.
2. Add an install script to the package in Maya using Autodesk's command
line arguments. The one I used was this:
#!/bin/bash
cd /tmp/Install\ Maya\ 2016.app/Contents/MacOS
sudo ./setup --noui --force --serial_number=XXX-XXXXXXXX
--product_key=793H1 --license_type=kStandalone
sudo rm -rf /tmp/Install\ Maya\ 2016.app/
Adjust the serial number, product key and other arguments accordingly more
info on what the arguments do can be found here:
https://knowledge.autodesk.com/support/maya/troubleshooting/caas/CloudHelp/cloudhelp/2016/ENU/Instal...I also added a line at the end to remove the temporary directory.
That's it! Works great. Some of this information can be found on munki
forums, but most scripts that I found were way too cluttered also this
solution was in most cases buried in blog posts way below more complicated
methods for installing Maya.
Cheers!