Posted on 11-15-2023 07:48 AM
Howdy everyone, has anyone had any issues installing Cisco Secure Client in Ventura after packaging in composer?
Posted on 11-15-2023 08:02 AM
What packaging are you doing and what problems are you seeing? There several routes to deploying it with customizations.
I have a wrapper package that throws the original in /tmp, then runs a postinstall script that calls the installer command line utility using a choices xml file. It works.
Cisco docs now recommend customizing the Cisco DMG with a choices file, which has the advantage of a friendlier experience for those manually installing it.
The adventurous could also modify the distribution file in the Cisco installer.
Posted on 11-15-2023 11:18 AM
I was using the PKG method I used for AnyConnect but during the script install - I get this error
Installation failed. The installer reported: installer: Package name is Cisco Secure Client 5.0.05040
installer: Installing at base path /
installer: The install failed. (The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance. The package is attempting to install content to the system volume.)
The pkg is signed and trusted but no go.
I will try the DMG route. Thanks!
11-15-2023 11:45 AM - edited 11-15-2023 11:46 AM
That line "The package is attempting to install content to the system volume" is interesting (unless thats just the generic failed message and I never paid attention to the "system" volume part). Are you getting that error when installing through Jamf or when testing the install manually? If its manual testing, maybe you need to make sure Terminal or Installer (whatever is kicking off the install) has Full Disk Access permissions. Just a guess.
Posted on 11-15-2023 08:15 AM
Yeah, I use the choices file as opposed to trying to strip out individual installers like on older versions. Never had issues with Ventura using this method.
Posted on 11-15-2023 03:19 PM
Hi williamaddis, I stopped packing the Cisco client and scripted the entire installation. The only thing I upload to Jamf is the Cisco Secure Client installer. Then I create my script in Jamf. In the policy I add the package installer (I cache the installer not install) and I add the script. The script handles the installation and reads the choice file. This is my script:
echo "Cleaning up..."
echo "Deleting anyconnect temp folder"
rm -rf /private/tmp/anyconnect_5_0/
echo "Deleting anyconnect cache files from waiting room"
rm -rf /Library/Application\ Support/JAMF/Waiting\ Room/Cisco_Secure_Client*
echo "Installation complete"
exit 0
Posted on 11-16-2023 08:29 AM
Cool this works -- my only question is how do you import the json after the fact?
Posted on 11-16-2023 08:31 AM
Hi Bmitchell34, what json file are you referring to?