summaryrefslogtreecommitdiffstats
path: root/cli/objects
diff options
context:
space:
mode:
Diffstat (limited to 'cli/objects')
-rw-r--r--cli/objects/client.py4
-rw-r--r--cli/objects/poweroff.py4
-rw-r--r--cli/objects/reboot.py4
-rw-r--r--cli/objects/session.py4
-rw-r--r--cli/objects/wol.py4
5 files changed, 10 insertions, 10 deletions
diff --git a/cli/objects/client.py b/cli/objects/client.py
index 66d25bc..cf5e0b9 100644
--- a/cli/objects/client.py
+++ b/cli/objects/client.py
@@ -45,8 +45,8 @@ class OgClient():
print_json(r.text)
@staticmethod
- def send_refresh(rest, args):
- parser = argparse.ArgumentParser(prog='ogcli send refresh')
+ def request_refresh(rest, args):
+ parser = argparse.ArgumentParser(prog='ogcli request refresh')
parser.add_argument('--client-ip',
action='append',
default=[],
diff --git a/cli/objects/poweroff.py b/cli/objects/poweroff.py
index 46086cb..c8848c5 100644
--- a/cli/objects/poweroff.py
+++ b/cli/objects/poweroff.py
@@ -13,8 +13,8 @@ import argparse
class OgPoweroff():
@staticmethod
- def send_poweroff(rest, args):
- parser = argparse.ArgumentParser(prog='ogcli send poweroff')
+ def request_poweroff(rest, args):
+ parser = argparse.ArgumentParser(prog='ogcli request poweroff')
group = parser.add_argument_group(
'clients', 'Client selection options')
group.add_argument('--center-id',
diff --git a/cli/objects/reboot.py b/cli/objects/reboot.py
index 162e771..bfa3257 100644
--- a/cli/objects/reboot.py
+++ b/cli/objects/reboot.py
@@ -13,8 +13,8 @@ import argparse
class OgReboot():
@staticmethod
- def send_reboot(rest, args):
- parser = argparse.ArgumentParser(prog='ogcli send reboot')
+ def request_reboot(rest, args):
+ parser = argparse.ArgumentParser(prog='ogcli request reboot')
group = parser.add_argument_group(
'clients', 'Client selection options')
group.add_argument('--center-id',
diff --git a/cli/objects/session.py b/cli/objects/session.py
index ee2cf73..c13468f 100644
--- a/cli/objects/session.py
+++ b/cli/objects/session.py
@@ -13,8 +13,8 @@ import argparse
class OgSession():
@staticmethod
- def send_session(rest, args):
- parser = argparse.ArgumentParser(prog='ogcli send session')
+ def request_session(rest, args):
+ parser = argparse.ArgumentParser(prog='ogcli request session')
parser.add_argument('--disk',
nargs='?',
required=True,
diff --git a/cli/objects/wol.py b/cli/objects/wol.py
index 44228c8..b037804 100644
--- a/cli/objects/wol.py
+++ b/cli/objects/wol.py
@@ -13,7 +13,7 @@ import argparse
class OgWol():
@staticmethod
- def send_wol(rest, args):
+ def request_wol(rest, args):
def scope_lookup(scope_id, scope_type, d):
if scope_id == d.get('id') and \
scope_type == d.get('type'):
@@ -26,7 +26,7 @@ class OgWol():
return lookup
return None
- parser = argparse.ArgumentParser(prog='ogcli send wol')
+ parser = argparse.ArgumentParser(prog='ogcli request wol')
parser.add_argument('--type',
nargs='?',
choices=['broadcast', 'unicast'],