I'm trying to bundle 3 installs into 1 pkg using composer. It needs to call an install script for each install. I added all 3 to a post flight script, but it doesn't seem to run them..
#!/bin/sh
cd /tmp/Threat-Prevention
./PkgInstallScript
cd /tmp/Firewall
./PkgInstallScript
Cd /tmp/Web-Control
./PkgInstallScript
exit 0 ## Success
exit 1 ## Failure