diff options
author | Christos.K <freedomrfox@gmail.com> | 2017-08-26 07:16:01 +0300 |
---|---|---|
committer | Christos.K <freedomrfox@gmail.com> | 2017-08-26 07:16:01 +0300 |
commit | 7dedb2d6df31e983bd8ad58f8f1385251034751b (patch) | |
tree | 2ac9814381c379d5f0a500fb624360c8f925c469 | |
parent | Updated switch flow (diff) | |
download | GSE-7dedb2d6df31e983bd8ad58f8f1385251034751b.tar.gz GSE-7dedb2d6df31e983bd8ad58f8f1385251034751b.tar.bz2 GSE-7dedb2d6df31e983bd8ad58f8f1385251034751b.zip |
Fixed net flag
-rwxr-xr-x | config.d/controller/modules/functions/cnetwork.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config.d/controller/modules/functions/cnetwork.sh b/config.d/controller/modules/functions/cnetwork.sh index 86ec5be..aebe1bb 100755 --- a/config.d/controller/modules/functions/cnetwork.sh +++ b/config.d/controller/modules/functions/cnetwork.sh @@ -14,6 +14,9 @@ if _check_net; then else _ctflag_net=1 fi - export _ctflag_net +else + _ctflag_net=1 fi +export _ctflag_net + |