We are currently using Casper to deploy Maya in our environment and it works well. However we are currently evaluating an alternative deployment solution called munki and need to address deploying Maya with this new tool. I am posting here because so far the solutions I have found envolve extracting packages and installing them in a certain order. Quite frankly it's a bit messy. Does Autodesk offer any recommendations/support for deployment through munki?
Solved! Go to Solution.
Hello @Anonymous
Does Autodesk offer any recommendations/support for deployment through munki ? Official support - NO I can find only a couple of old cases of anyone deploying Autodesk products using Munki so we would have very little to recommend. That does not mean that it would not work or if you had an existing case with Autodesk that they would not attempt to help you.
If you are successful I would suggest posting your results and methodology in this post. Your experience could become valuable to other using Munki with Autodesk products!
Thank you for taking part in our community forum!
Kind Regards,
Hi Dwarren,
Thank you for updating this thread and providing your workflow to the community. Thank you.
Regards,
Thanks, glad I could help.
One correction: Step number 2 shoudl say "Add an install script to the package in MUNKI.." not Maya
Just an update. I was new to munki at the time. I did not realize that you can change the install location so nesting the installer within an installer is not necessary, you just need to install to the /tmp folder and proceed with the same script.
Cheers!
Hello @Anonymous,
Thank you for the updates and contributing to the community.
Natasha
Community Product Support Specialist
Helpful Links:
AutoCAD Videos | AutoCAD Crashes or Freezes | AutoCAD Customer Council | AutoCAD System Requirements | Prepare your computer for download | Autodesk Virtual Agent | Clean Uninstall | Steps for Setting-Up Student Software
Update for 2017 Standalone install. A few lines need to be added to the end of the script.
#!/bin/sh
#Note: the installer has been copied to the /tmp/ folder
cd /tmp/Install\ Maya\ 2017.app/Contents/MacOS
sudo ./setup --noui --log=/var/log/autodesk/2017/INSTALL.log --force --serial_number=XXX-XXXXXXXX --product_key=657I1 --license_type=kStandalone
# Using adlmreg to activate the license
cd /tmp/Install\ Maya\ 2017.app/Contents/Resources
#Note: for this is for standalone, for Network install you will need to change the product key and use an "N" instead of an "S".
sudo ./adlmreg -i S 657I1 657I1 2017.0.0.F XXX-XXXXXXXX /Library/Application\ Support/Autodesk/Adlm/PIT/2017/MayaConfig.pit
sudo mkdir /Library/Application\ Support/Autodesk/CLM/LGS/657I1_2017.0.0.F
sudo touch /Library/Application\ Support/Autodesk/CLM/LGS/657I1_2017.0.0.F/LGS.data
sudo chmod 777 /Library/Application\ Support/Autodesk/CLM/LGS/657I1_2017.0.0.F/LGS.data
#Note: For a network install change this to echo "_NETWORK"
echo "_STANDALONE" >> /Library/Application\ Support/Autodesk/CLM/LGS/657I1_2017.0.0.F/LGS.data
#For Network install remove the comment (#) markers from the following commands:
#echo "_NETWORK" >> /Library/Application\ Support/Autodesk/CLM/LGS/657I1_2017.0.0.F/LGS.data
#echo "SERVER servername 000000000000" >> /Library/Application\ Support/Autodesk/CLM/LGS/657I1_2017.0.0.F/LICPATH.lic
#echo "USE_SERVER" >> /Library/Application\ Support/Autodesk/CLM/LGS/657I1_2017.0.0.F/LICPATH.lic
Cheers!
Hello @Anonymous,
Thank you for being a part of the community and providing this helpful information. Visitors of the board will greatly appreciate!
Natasha
Community Product Support Specialist
Helpful Links:
AutoCAD Videos | AutoCAD Crashes or Freezes | AutoCAD Customer Council | AutoCAD System Requirements | Prepare your computer for download | Autodesk Virtual Agent | Clean Uninstall | Steps for Setting-Up Student Software
Can't find what you're looking for? Ask the community or share your knowledge.