Posted on 11-27-2020 01:27 AM
Hello there
I want to know if somebody know how to deploy a PKG with config files
We use LiveNavigator for backup our macOS.
For configure the server at the install the PKGs have to be run with a file name "autoconfig.txt" in the same folder.
Regards,
Posted on 11-29-2020 07:34 AM
I had something similar, techsmith relay.
What I did was copy both files to a sub folder under temp. Then use a script to execute the installation. When I get a chance I can post my relay info.
Posted on 11-30-2020 06:07 AM
My Notes
Copy contents to /tmp
Add to composer
Export as dmg
Upload via jamf admin
You must capture the original pkg file & the config file.
When the pkg file runs, it reads the settings from the .plist file.
Installation
• Distribute via policy • Run Install Script
Install Script
#!/bin/zsh
installer -pkg /tmp/yourinstaller.pkg -target /
exit 0