]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
node-proxy: drop current main.py
authorGuillaume Abrioux <gabrioux@ibm.com>
Tue, 10 Oct 2023 12:38:12 +0000 (12:38 +0000)
committerGuillaume Abrioux <gabrioux@ibm.com>
Thu, 25 Jan 2024 15:09:13 +0000 (15:09 +0000)
This file was there for devel purposes.
Let's drop it as it is not used any longer.

Signed-off-by: Guillaume Abrioux <gabrioux@ibm.com>
(cherry picked from commit c45bb65fe88bbc6f2e6f9d82adc0bc4e594b1c43)

src/cephadm/cephadmlib/node_proxy/main.py [deleted file]

diff --git a/src/cephadm/cephadmlib/node_proxy/main.py b/src/cephadm/cephadmlib/node_proxy/main.py
deleted file mode 100644 (file)
index 45cd573..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-from redfish_system import RedfishSystem
-import time
-
-host = "https://x.x.x.x:8443"
-username = "myuser"
-password = "mypassword"
-
-system = RedfishSystem(host, username, password)
-system.start_update_loop()
-time.sleep(20)
-print(system.get_status())
-system.stop_update_loop()