aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2022-01-30 22:06:37 +0100
committerGravatar Christian Hesse <mail@eworm.de>2022-01-30 22:06:37 +0100
commit27a81bcbca52d513c5b9c10578474a1863bd08af (patch)
treea3e8a6b9e2cd74534169b98e6391ccd2da6042e4
parentdfe995be270f1ee9621454e7feada84c33168db0 (diff)
packages-update: use correct syntax
-rw-r--r--packages-update6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages-update b/packages-update
index b6b0524..2e6d8be 100644
--- a/packages-update
+++ b/packages-update
@@ -35,7 +35,7 @@ $ScriptLock $0;
:if ($NumInstalled > $NumLatest) do={
:if ([ $ScriptFromTerminal $0 ] = true) do={
:put "Latest version is older than installed one. Want to downgrade? [y/N]";
- :if (([ :terminal inkey timeout=60 ] % 32) = 25) do={
+ :if (([ / terminal inkey timeout=60 ] % 32) = 25) do={
:set DoDowngrade true;
} else={
:put "Canceled...";
@@ -61,7 +61,7 @@ $ScriptLock $0;
$LogPrintExit2 warning $0 ("Running backup script " . $ScriptName . " before update failed!") false;
:if ([ $ScriptFromTerminal $0 ] = true) do={
:put "Do you want to continue anyway? [y/N]";
- :if (([ :terminal inkey timeout=60 ] % 32) = 25) do={
+ :if (([ / terminal inkey timeout=60 ] % 32) = 25) do={
$LogPrintExit2 info $0 ("User requested to continue anyway.") false;
} else={
$LogPrintExit2 info $0 ("Canceled update...") true;
@@ -80,7 +80,7 @@ $ScriptLock $0;
:if ([ $ScriptFromTerminal $0 ] = true) do={
:put "Do you want to (s)chedule reboot or (r)eboot now? [s/R]";
- :if (([ :terminal inkey timeout=60 ] % 32) = 19) do={
+ :if (([ / terminal inkey timeout=60 ] % 32) = 19) do={
/ system scheduler add name="reboot-for-update" start-time=03:00:00 interval=1d \
on-event=(":global RandomDelay; \$RandomDelay 3600; " . \
"/ system scheduler remove reboot-for-update; / system reboot;");