diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2015-09-02 10:34:48 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2015-09-02 10:34:48 +0200 |
commit | b6c45293c1deec3ac607e204e516c12d8151bbbb (patch) | |
tree | 2f223ffee818efe899f3eed46047555866ef6d54 | |
parent | f8e3d106979fc6eac4f2011de713eddf89d417fb (diff) | |
download | hosts-b6c45293c1deec3ac607e204e516c12d8151bbbb.tar.gz hosts-b6c45293c1deec3ac607e204e516c12d8151bbbb.tar.zst hosts-b6c45293c1deec3ac607e204e516c12d8151bbbb.zip |
Fix sourcing in ImmaeEu-down
-rwxr-xr-x | ImmaeEu-down | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ImmaeEu-down b/ImmaeEu-down index 8e562a4..d5e9ccf 100755 --- a/ImmaeEu-down +++ b/ImmaeEu-down | |||
@@ -1,7 +1,7 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # This file closes down the tap device. | 2 | # This file closes down the tap device. |
3 | 3 | ||
4 | source /tmp/tinc_$NETNAME | 4 | . /tmp/tinc_$NETNAME |
5 | rm -f /tmp/tinc_$NETNAME | 5 | rm -f /tmp/tinc_$NETNAME |
6 | ip -6 route del default via $GWIP | 6 | ip -6 route del default via $GWIP |
7 | for MYIP in $MYIPS; do | 7 | for MYIP in $MYIPS; do |