Sophie

Sophie

distrib > Mandriva > 2010.2 > i586 > by-pkgid > 721aaffecb963446a3346ffe531b19bf > files > 13

vdr-plugin-mplayer-0.10.2-1mdv2010.1.i586.rpm

#!/bin/bash
#
# This script is called from VDR before & after network access
#
# argument 1: wanted action, one of up,down
#

action="$1"

case "$action" in
up)
  echo "starting dialin"
  ;;
down)
  echo "hangup"
  ;;
esac

exit 0