Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
a2422bfb
Commit
a2422bfb
authored
9 years ago
by
Yuri Vysotskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added additional ini file search path into contrib/inventory/zabbix.py
parent
9e364c2e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
+5
-1
contrib/inventory/zabbix.py
+5
-1
No files found.
contrib/inventory/zabbix.py
View file @
a2422bfb
...
...
@@ -52,7 +52,11 @@ class ZabbixInventory(object):
def
read_settings
(
self
):
config
=
ConfigParser
.
SafeConfigParser
()
config
.
read
(
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
+
'/zabbix.ini'
)
conf_path
=
'./zabbix.ini'
if
not
os
.
path
.
exists
(
conf_path
):
conf_path
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
+
'/zabbix.ini'
if
os
.
path
.
exists
(
conf_path
):
config
.
read
(
conf_path
)
# server
if
config
.
has_option
(
'zabbix'
,
'server'
):
self
.
zabbix_server
=
config
.
get
(
'zabbix'
,
'server'
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment