From 6628bb087f40dc68eb9a26aa58e0b3eb0d1798ee Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Fri, 4 Jul 2014 21:28:28 +0000 Subject: [PATCH] Fix the registration buttons: reboot and provision for polycom version 4 and higher and snom phones --- resources/install/scripts/app/event_notify/index.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/install/scripts/app/event_notify/index.lua b/resources/install/scripts/app/event_notify/index.lua index acfac42df9..9d2b5718d2 100644 --- a/resources/install/scripts/app/event_notify/index.lua +++ b/resources/install/scripts/app/event_notify/index.lua @@ -85,10 +85,10 @@ --polycom if (vendor == "polycom") then if (command == "reboot") then - event:addHeader('event-string', 'check-sync;reboot=true'); + event:addHeader('event-string', 'check-sync'); end if (command == "check_sync") then - event:addHeader('event-string', 'check-sync;reboot=false'); + event:addHeader('event-string', 'check-sync'); end end @@ -107,7 +107,7 @@ event:addHeader('event-string', 'check-sync;reboot=true'); end if (command == "check_sync") then - event:addHeader('event-string', 'check-sync;reboot=false'); + event:addHeader('event-string', 'check-sync;reboot=true'); end end