6 lines
76 B
Bash
6 lines
76 B
Bash
|
#!/bin/sh
|
||
|
if [ "$IFACE" != "clat" ]; then
|
||
|
ip netns del clatns;
|
||
|
exit 0;
|
||
|
fi
|