#!/bin/sh

case "$1" in
    restore-defaults)
        echo "Resetting IC paging gateway users, audio files and groups to default values"
        cd /barix/apps/icpgw
        python3 restore_defaults.py
        ;;
    *)
        echo "Nothing to do..."
        ;;
esac
