reinstate an initscript for the backend so that /etc/iproute2/rt_tables gets cleaned...
[planetlab-umts-tools.git] / umts.init
1 #!/bin/bash
2 # required at boot-time for smooth operation of the umts-related scripts
3 # chkconfig: 2345 99 01
4
5 function start () { sed -i -e '/slcip/ d' /etc/iproute2/rt_tables ; }
6
7 case $1 in
8      start) start;;
9      *) ;;
10 esac