8 lines
223 B
Text
8 lines
223 B
Text
|
#!/bin/sh
|
||
|
# This file closes down the tap device.
|
||
|
# Note that if you use the universal tun/tap driver, you don't
|
||
|
# need to do anything; once tinc quits the tap device is already
|
||
|
# removed by the kernel.
|
||
|
|
||
|
ifconfig tap0 down
|