Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
serverdensity
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ansible
Plugins
serverdensity
Commits
865426d7
Commit
865426d7
authored
9 years ago
by
jurgenhaas
Browse files
Options
Downloads
Plain Diff
Merge pull request #6 from mrwacky42/idiomatic
Make more idiomatic
parents
af4c9ffc
deaf7c57
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
action_plugins/serverdensity.py
+18
-21
18 additions, 21 deletions
action_plugins/serverdensity.py
with
18 additions
and
21 deletions
action_plugins/serverdensity.py
+
18
−
21
View file @
865426d7
...
...
@@ -37,7 +37,7 @@ class ActionModule(object):
if
complex_args
:
args
.
update
(
complex_args
)
args
.
update
(
parse_kv
(
module_args
))
if
not
'
api_token
'
in
args
:
if
'
api_token
'
not
in
args
:
raise
ae
(
"'
api_token
'
is a required argument.
"
)
self
.
api_token
=
args
.
get
(
'
api_token
'
)
...
...
@@ -48,17 +48,17 @@ class ActionModule(object):
just_download
=
args
.
get
(
'
readonly
'
,
False
)
if
just_download
:
self
.
force_update
=
False
self
.
cache_file_name
=
tempfile
.
mktemp
(
prefix
=
'
sd_
'
,
suffix
=
'
.json
'
)
cleanup
=
False
self
.
force_update
=
False
self
.
cache_file_name
=
tempfile
.
mktemp
(
prefix
=
'
sd_
'
,
suffix
=
'
.json
'
)
cleanup
=
False
result
=
{}
self
.
list_all
()
if
just_download
:
vv
(
'
Downloaded settings to %s
'
%
self
.
cache_file_name
)
return
ReturnData
(
conn
=
conn
,
comm_ok
=
True
,
result
=
result
)
vv
(
'
Downloaded settings to %s
'
%
self
.
cache_file_name
)
return
ReturnData
(
conn
=
conn
,
comm_ok
=
True
,
result
=
result
)
services
=
{}
devicegroup_alerts
=
{}
...
...
@@ -77,7 +77,7 @@ class ActionModule(object):
if
host_services
:
for
host_service
in
host_services
:
name
=
host_service
.
get
(
'
name
'
)
if
n
ot
services
.
has_key
(
name
)
:
if
n
ame
not
in
services
:
services
.
__setitem__
(
name
,
host_service
)
host_group
=
host_vars
.
get
(
'
sd_group
'
)
...
...
@@ -88,17 +88,17 @@ class ActionModule(object):
if
host_devicegroup_alerts
:
for
name
in
host_devicegroup_alerts
:
host_devicegroup_alert
=
host_devicegroup_alerts
.
get
(
name
)
if
not
devicegroup_alerts
.
has_key
(
host_group
)
:
if
host_group
not
in
devicegroup_alerts
:
devicegroup_alerts
.
__setitem__
(
host_group
,
{})
alerts
=
devicegroup_alerts
.
get
(
host_group
)
if
n
ot
alerts
.
has_key
(
name
)
:
if
n
ame
not
in
alerts
:
alerts
.
__setitem__
(
name
,
host_devicegroup_alert
)
devicegroup_alerts
.
__setitem__
(
host_group
,
alerts
)
host_servicegroup_alerts
=
host_vars
.
get
(
'
sd_servicegroup_alerts
'
)
if
host_servicegroup_alerts
:
for
name
in
host_servicegroup_alerts
:
if
n
ot
servicegroup_alerts
.
has_key
(
name
)
:
if
n
ame
not
in
servicegroup_alerts
:
host_servicegroup_alert
=
host_servicegroup_alerts
.
get
(
name
)
servicegroup_alerts
.
__setitem__
(
name
,
host_servicegroup_alert
)
...
...
@@ -121,7 +121,7 @@ class ActionModule(object):
'
countryCode
'
:
location
.
get
(
'
countryCode
'
),
'
countryName
'
:
location
.
get
(
'
countryName
'
),
'
text
'
:
location
.
get
(
'
text
'
),
},
},
provider
=
host_vars
.
get
(
'
provider
'
)
)
...
...
@@ -208,13 +208,10 @@ class ActionModule(object):
msg
=
content
[
'
message
'
]
if
content
[
'
errors
'
]:
for
error
in
content
[
'
errors
'
]:
try
:
if
error
[
'
message
'
]:
msg
+=
'
//
'
+
error
[
'
message
'
]
if
error
[
'
description
'
]:
msg
+=
'
//
'
+
error
[
'
description
'
]
except
KeyError
:
continue
if
error
.
get
(
'
message
'
):
msg
+=
'
//
'
+
error
[
'
message
'
]
if
error
.
get
(
'
description
'
):
msg
+=
'
//
'
+
error
[
'
description
'
]
raise
ae
(
'
%s
'
%
msg
)
return
content
...
...
@@ -282,7 +279,7 @@ class ActionModule(object):
changed
=
False
allgroup
=
self
.
runner
.
inventory
.
get_group
(
'
all
'
)
allvariables
=
allgroup
.
get_variables
()
if
not
allvariables
.
has_key
(
'
_serverdensity_
'
+
type
)
:
if
'
_serverdensity_
'
+
type
not
in
allvariables
:
changed
=
True
objects
=
self
.
_request
(
path
)
allgroup
.
set_variable
(
'
_serverdensity_
'
+
type
,
objects
)
...
...
@@ -379,7 +376,7 @@ class ActionModule(object):
'
location
'
:
location
,
'
provider
'
:
provider
,
'
agentKey
'
:
None
,
}
}
deviceId
=
self
.
_get_device_id
(
hostname
)
if
not
deviceId
:
path
=
'
inventory/devices
'
...
...
@@ -441,7 +438,7 @@ class ActionModule(object):
n
=
{
'
type
'
:
n_type
,
'
id
'
:
id
,
}
}
if
actions
:
n
.
__setitem__
(
'
actions
'
,
actions
)
recipients
.
append
(
n
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment