diff --git a/actions.yaml b/actions.yaml index 39d0036..72d03a2 100644 --- a/actions.yaml +++ b/actions.yaml @@ -3,6 +3,6 @@ restart-pg: sapi-post-ips: description: Post PLUMgrid nodes IPs to Solutions API server. sapi-post-zone-info: - description: Post Zone info to Solutions API server. + description: Post PLUMgrid Zone info to Solutions API server. sapi-post-license: description: Post PLUMgrid License to Solutions API server. diff --git a/actions/actions.py b/actions/actions.py index 67068e5..4575a0b 100755 --- a/actions/actions.py +++ b/actions/actions.py @@ -23,21 +23,21 @@ def restart_pg(args): def post_ips(args): """ - POST plumgrid nodes IPs to solutions api server. + POST PLUMgrid nodes IPs to solutions api server. """ sapi_post_ips() def post_zone_info(args): """ - POST zone information to solutions api server + POST PLUMgrid zone information to solutions api server """ sapi_post_zone_info() def post_license(args): """ - POST PLUMgrid License to solutions api server + POST PLUMgrid License key to solutions api server """ sapi_post_license()