aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2020-03-09 09:29:36 +0100
committerGravatar Christian Hesse <mail@eworm.de>2020-03-09 09:29:36 +0100
commit8992b1816684d14e12f53f4a0629026589146e37 (patch)
treeebd04aa95601f231b136c42ba358b16a71891022
parent8020955b3ba58bf3af7f1277bfcc2d0330213e19 (diff)
global-functions: $DeviceInfo: more indention
-rw-r--r--global-functions10
1 files changed, 5 insertions, 5 deletions
diff --git a/global-functions b/global-functions
index ffd34b8..be7a7ba 100644
--- a/global-functions
+++ b/global-functions
@@ -175,19 +175,19 @@
}
:set Info ($Info . "\n" . \
"RouterOS:\n" . \
- " Channel: " . $Update->"channel" . "\n" . \
- " Installed: " . $Update->"installed-version");
+ " Channel: " . $Update->"channel" . "\n" . \
+ " Installed: " . $Update->"installed-version");
:if ([ :typeof ($Update->"latest-version") ] != "nothing" && \
$Update->"installed-version" != $Update->"latest-version") do={
:set Info ($Info . "\n" . \
- " Available: " . $Update->"latest-version");
+ " Available: " . $Update->"latest-version");
}
:set Info ($Info . "\n" . \
"RouterOS-Scripts Configuration Version:\n" . \
- " Current: " . $GlobalConfigVersion);
+ " Current: " . $GlobalConfigVersion);
:if ($GlobalConfigVersion != $ExpectedConfigVersion) do={
:set Info ($Info . "\n" . \
- " Expected: " . $ExpectedConfigVersion);
+ " Expected: " . $ExpectedConfigVersion);
}
:return $Info;