1#!/bin/sh 2# executed when service is taken down 3 4service=${PWD##*/} 5file_ipconf="$service.ipconf" 6dir_ipconf="/var/run/service/fw" 7 8# Reconfigure network with this interface disabled 9echo "Finish: deconfiguring" 10rm "env.out" 11rm "$file_ipconf" 12rm "$dir_ipconf/$file_ipconf" 13svc -u fw 14