Posted on 03-13-2018 07:20 AM
I've had sporadic problems deploying the F5 vpn client. I have a composer pkg with the Mac_edgesvpn.pkg and the config_tmp.f5c. I have both set to root:wheel and perms of 777 and sitting in /private/var/tmp
then I have a postflight script that runs that does the installer -package stuff
#!/bin/sh
installer -package "/private/var/tmp/mac_edgesvpn.pkg" -target /
sleep 15
rm -rf /private/var/tmp/mac_edgesvpn.pkg
rm -rf /private/var/tmp/config_tmp.f5c
exit 0 ## Success
exit 1 ## Failure
half the time it deploys the server configs, the other half it doesn't.
Posted on 03-13-2018 09:54 AM
I've not had much success using it as .pkg. Compiling and deploying as a .dmg have a much, much higher success rate.
Posted on 06-01-2018 12:49 AM
Not sure I'd trust both being at top of /private/tmp
...