compile.sh 199 B

12345678910
  1. #!/bin/sh
  2. set -x
  3. set -e
  4. OUTDIR="$(dirname $0)"
  5. checkmodule -M -m -o ${OUTDIR}/ptunnel-ng.mod ${OUTDIR}/ptunnel-ng.te
  6. semodule_package -o ${OUTDIR}/ptunnel-ng.pp -m ${OUTDIR}/ptunnel-ng.mod
  7. exit 0