summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlvaro Neira Ayuso <aneira@soleta.eu>2019-12-12 18:34:35 +0100
committerAlvaro Neira Ayuso <alvaroneay@gmail.com>2020-01-19 19:50:44 +0100
commit6479530bf54a5c1439fea8f337018c178d91c5bf (patch)
tree617e57262dbb080cb357537b6c00b94f9edbd8d8
parent72e93be46f841b00c5aec391f75b5eee87f8e08e (diff)
Add Probe HTTP Command
-rw-r--r--src/ogProcess.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ogProcess.py b/src/ogProcess.py
index a2fca8b..21b3eca 100644
--- a/src/ogProcess.py
+++ b/src/ogProcess.py
@@ -15,6 +15,8 @@ class ogProcess():
elif ("reboot" in URI):
self.process_reboot()
return 1
+ elif ("probe" in URI):
+ return 1
return 0