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..
1#!/bin/sh23cd /tmp/Threat-Prevention4./PkgInstallScript56cd /tmp/Firewall7./PkgInstallScript89Cd /tmp/Web-Control10./PkgInstallScript1112exit 0 ## Success13exit 1 ## Failure