#!/bin/sh
# set -x
###########################################################################
# Include your personal customizations for cfg_xyz into below structure
###########################################################################
# Copyright (C) cfg.customize,  C. Ostheimer and <dynamic>, licensed under
# GNU General Public License version 2 (GPL v2.0); spblinux.de/fbox.new/gpl-2.0.txt
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
##############################################################################

 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  
  
