From: Guillaume Abrioux Date: Tue, 10 Oct 2023 12:38:12 +0000 (+0000) Subject: node-proxy: drop current main.py X-Git-Tag: v19.3.0~102^2~51 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ccf9af06f372bfd0b6d5883bd28e8bd01a5088b6;p=ceph.git node-proxy: drop current main.py This file was there for devel purposes. Let's drop it as it is not used any longer. Signed-off-by: Guillaume Abrioux --- diff --git a/src/cephadm/cephadmlib/node_proxy/main.py b/src/cephadm/cephadmlib/node_proxy/main.py deleted file mode 100644 index 45cd573192a..00000000000 --- a/src/cephadm/cephadmlib/node_proxy/main.py +++ /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()