fixed for module-tools
[planetlab-umts-tools.git] / backend / umts
1 #!/bin/bash
2 # chkconfig: - 87 30
3 # description: Loads modules needed for the umts connection and uses gcom
4
5 . /usr/lib/umts_functions
6
7 PATH=/bin:/usr/bin:/sbin:/usr/sbin
8
9 case "$1" in
10     start)
11         echo "Initializing the umts component..."
12         if init ; then echo "Done."; fi
13     ;;
14
15     *)
16         echo "usage: $0 start"
17     ;;
18
19 esac
20
21 exit 0
22