11 lines
262 B
Plaintext
11 lines
262 B
Plaintext
var Timer StartupTimer = null
|
|
|
|
rule "Startup Message"
|
|
when
|
|
System started
|
|
then
|
|
logInfo("SystemStart.rules", "Create timer for Systemstartup & Restore")
|
|
StartupTimer = createTimer(now.plusSeconds(30), [|
|
|
StartupSwitch.postUpdate(ON)
|
|
])
|
|
end |