mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 17:43:14 +00:00
65af925b2d
'nodepower' is not yet 'rpower' like, but it's a quick demonstration of using the python confluent client library. It only supports unix socket as written
17 lines
373 B
Python
17 lines
373 B
Python
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
|
|
path = os.path.dirname(os.path.realpath(__file__))
|
|
path = os.path.realpath(os.path.join(path, '..'))
|
|
sys.path.append(path)
|
|
|
|
import confluent.common.client as client
|
|
|
|
|
|
node = sys.argv[1]
|
|
|
|
session = client.Command()
|
|
for res in session.read("/node/{0}/power/state".format(node)):
|
|
print("%s: %s" % (node, res['state']['value']))
|