X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=backend%2Fumts;fp=backend%2Fumts;h=c52ce1066c6d97f5d550c56851fb672d8a880311;hb=abccf94bbe664e80a0104c0cd9fd9c6cae062f16;hp=0000000000000000000000000000000000000000;hpb=5733bc880ddd666dfa5401167a2569d49b3c3ac0;p=planetlab-umts-tools.git diff --git a/backend/umts b/backend/umts new file mode 100755 index 0000000..c52ce10 --- /dev/null +++ b/backend/umts @@ -0,0 +1,22 @@ +#!/bin/bash +# chkconfig: - 87 30 +# description: Loads modules needed for the umts connection and uses gcom + +. /usr/lib/umts_functions + +PATH=/bin:/usr/bin:/sbin:/usr/sbin + +case "$1" in + start) + echo "Initializing the umts component..." + if init ; then echo "Done."; fi + ;; + + *) + echo "usage: $0 start" + ;; + +esac + +exit 0 +