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
16d00a2f
Commit
16d00a2f
authored
10 years ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
Bug fix with changing agent key when updating devices and caching
parent
3b076efe
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
+28
-16
28 additions, 16 deletions
action_plugins/serverdensity.py
with
28 additions
and
16 deletions
action_plugins/serverdensity.py
+
28
−
16
View file @
16d00a2f
...
...
@@ -310,16 +310,20 @@ class ActionModule(object):
self
.
list_alerts
()
self
.
list_users
()
self
.
list_notifications
()
cache
=
{
'
devices
'
:
self
.
devices
,
'
services
'
:
self
.
services
,
'
alerts
'
:
self
.
alerts
,
'
users
'
:
self
.
users
,
'
notifications
'
:
self
.
notifications
,
}
self
.
cache_update
(
True
)
def
cache_update
(
self
,
force
):
if
self
.
cache_file_name
:
with
open
(
self
.
cache_file_name
,
'
w
'
)
as
cache_file
:
json
.
dump
(
cache
,
cache_file
)
if
force
or
os
.
path
.
exists
(
self
.
cache_file_name
):
with
open
(
self
.
cache_file_name
,
'
w
'
)
as
cache_file
:
cache
=
{
'
devices
'
:
self
.
devices
,
'
services
'
:
self
.
services
,
'
alerts
'
:
self
.
alerts
,
'
users
'
:
self
.
users
,
'
notifications
'
:
self
.
notifications
,
}
json
.
dump
(
cache
,
cache_file
)
def
cache_reset
(
self
):
if
self
.
cache_file_name
and
os
.
path
.
exists
(
self
.
cache_file_name
):
...
...
@@ -353,13 +357,21 @@ class ActionModule(object):
return
path
=
'
inventory/devices/
'
+
deviceId
sd_host
=
self
.
_request
(
path
,
data
)
if
not
deviceId
:
self
.
devices
.
append
(
sd_host
)
host
=
self
.
runner
.
inventory
.
_hosts_cache
[
hostname
]
host
.
set_variable
(
'
sd_agent_key
'
,
sd_host
.
get
(
'
agentKey
'
))
device
=
self
.
_request
(
path
,
data
)
if
deviceId
:
for
old_device
in
self
.
devices
:
if
old_device
.
get
(
'
hostname
'
)
==
hostname
:
self
.
devices
.
remove
(
old_device
)
self
.
devices
.
append
(
device
)
self
.
cache_update
(
False
)
if
hostname
in
self
.
runner
.
inventory
.
_hosts_cache
:
host
=
self
.
runner
.
inventory
.
_hosts_cache
[
hostname
]
host
.
set_variable
(
'
sd_agent_key
'
,
device
.
get
(
'
agentKey
'
))
if
hostname
in
self
.
runner
.
inventory
.
_vars_per_host
:
hostvars
=
self
.
runner
.
inventory
.
_vars_per_host
.
get
(
hostname
)
hostvars
.
__setitem__
(
'
sd_agent_key
'
,
device
.
get
(
'
agentKey
'
))
def
ensure_service
(
self
,
servicename
,
service
):
serviceId
=
self
.
_get_service_id
(
servicename
)
...
...
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