#!/bin/sh # set -x ########################################################################### # Include your personal customizations for cfg_xyz into below structure ########################################################################### if [ $# -eq 2 -a $1 = allow ];then case $2 in cfg_asterisk) # Include here your personal customizations for cfg_asterisk # place code here # place code here ;; cfg_dropbear) # Include here your personal customizations for cfg_asterisk # place code here # place code here ;; cfg_xyz) # Include here your personal customizations for cfg_asterisk # place code here # place code here ;; *) [ "$verbose" ] && echo "Information: No customizations defined for package: $2"; exit 2 esac else echo "Error: This script is not supposed to be run manually. Exiting gracefully!" exit 1 fi exit