summaryrefslogtreecommitdiff
path: root/examples/var_service/zcip_if/finish (plain)
blob: 95995cf5f1c9fe93783b4270dab8ded5f321ac4d
1#!/bin/sh
2# executed when service is taken down ("sv d .")
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"
13sv u /var/service/fw
14