From dbe0f1291a34362ca3af4d803f6158358fe824ff Mon Sep 17 00:00:00 2001 From: SPO Date: Tue, 5 Nov 2024 15:38:16 +0100 Subject: [PATCH] (kiosk) Update plugin for doing nothing to avoid errors on machines which already have the previous version of the plugin This plugin will be deleted at a later stage --- .../pluginsmachine/plugin_updatekiosklauncher.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pulse_xmpp_agent/pluginsmachine/plugin_updatekiosklauncher.py diff --git a/pulse_xmpp_agent/pluginsmachine/plugin_updatekiosklauncher.py b/pulse_xmpp_agent/pluginsmachine/plugin_updatekiosklauncher.py new file mode 100644 index 00000000..5faa6070 --- /dev/null +++ b/pulse_xmpp_agent/pluginsmachine/plugin_updatekiosklauncher.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: 2020-2023 Siveo +# SPDX-License-Identifier: GPL-3.0-or-later + +from lib import utils + +plugin = {"VERSION": "2.0", "NAME": "updatekiosklauncher", "TYPE": "machine"} # fmt: skip + + +@utils.set_logging_level +def action(xmppobject, action, sessionid, data, message, dataerreur): + pass