#!/bin/bash

RUNLEVEL=S
NEEDS="+remote_fs"

. /etc/init.d/smgl_init

case $1 in
  start)    if [ -f /etc/chpax.cfg ] ; then
              echo "Running chpax.sh..."
              loadproc /usr/sbin/chpax.sh
            fi
            ;;

  stop)     exit 0
            ;;

  *)        echo "Usage: $0 {start|stop}"
            exit 1
            ;;
esac
