My organization has several dozen Macintosh machines that use a vulnerable version of Git for version control. I have the newest version and would like to copy the dmg file to each machine, mount it, install the updated application and finally do some cleanup. What would be the most efficient way to accomplish this? I have not had any luck finding any decent sites with command line switches for Mac OS X. Does anyone have experience deploying third party Macintosh Applications through Bigfix or have a site to recommend to help accomplish this? Thanks.
Are you referencing the āgit-2.8.1-intel-universal-mavericks.dmgā?
The contents of the dmg is a git-2.8.1-intel-universal-mavericks.pkg, which is a package you could pull out and distribute to make it a bit simpler. For example, we install packages with this action script:
However, since you asked about DMGs⦠You could use the wizard to deploy the software, it should work without modifications. If you want to action script it yourself, I use the following to deploy DMG with pkgs inside:
I think I may have found the issue. I think the old version needs to be removed first. When i pushed to a machine without git to test the script it completed successfully without issue.
Looks correct, except youāve got the 'wait /bin/cpā¦" on the same line as the endif. Place a carriage return right after āendifā and you should have it!
Hi Rusty, all lines are completed successfully, with the error code 1.
Besides under Hiren.dmg, when I double click on it, itās prompt a another windows where it is asking for āDouble click on below icon to installā and the icon name is hirenlite.appā¦
When I double click on hirenlite.app, a new windows appears and asking to ācontinueā to install the software. (This step I am doing manually to check the exact file name and application behavior)
Other Info : DMG File name : Hiren.dmg - When I double click on it⦠there are some Folder & files are reflecting under Computer (Go>Computer) which areā¦
.dropDMBackground, 2) .feseventsd , 3) HirenLite.app
e.g.
MyMACBook-Test > Hiren Lite Installer
+.dropDMBackground
+.feseventsd
+HirenLite.app
It sounds like the dmg has an app to install the software, not just the software itself? Can I download this dmg from somewhere online to see the contents? Does the Hiren Lite software have any mass deployment documentation?
You may need to repackage the app install with something like JAMF Composer.app. Iād suggest contacting the company and asking them if there is an alternative method to distribute the software.
You could also try this manually by using SSH to get to the machine, curl to get the dmg, then following the steps in the ActionScript to reproduce the task.