Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
envsetup
Manage
Activity
Members
Plan
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
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
mediaserver
envsetup
Commits
ebae3805
Commit
ebae3805
authored
6 years ago
by
Stéphane Diemer
Browse files
Options
Downloads
Patches
Plain Diff
Use systemctl if dbus is not installed to get fail2ban state.
parent
798c7b3b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_fail2ban.py
+37
-18
37 additions, 18 deletions
tests/test_fail2ban.py
with
37 additions
and
18 deletions
tests/test_fail2ban.py
+
37
−
18
View file @
ebae3805
...
...
@@ -7,8 +7,6 @@ Checks the current state of the fail2ban service.
from
pathlib
import
Path
import
sys
# pylint: disable=E0401
import
dbus
sys
.
path
.
append
(
str
(
Path
(
__file__
).
parents
[
1
].
resolve
()))
...
...
@@ -25,22 +23,43 @@ def get_service_state(name: str) -> tuple:
:rtype: tuple
"""
bus
=
dbus
.
SystemBus
()
systemd
=
bus
.
get_object
(
"
org.freedesktop.systemd1
"
,
"
/org/freedesktop/systemd1
"
)
manager
=
dbus
.
Interface
(
systemd
,
"
org.freedesktop.systemd1.Manager
"
)
unit
=
manager
.
LoadUnit
(
"
{}.service
"
.
format
(
name
))
proxy
=
bus
.
get_object
(
"
org.freedesktop.systemd1
"
,
str
(
unit
))
active
=
proxy
.
Get
(
"
org.freedesktop.systemd1.Unit
"
,
"
ActiveState
"
,
dbus_interface
=
"
org.freedesktop.DBus.Properties
"
,
)
state
=
proxy
.
Get
(
"
org.freedesktop.systemd1.Unit
"
,
"
SubState
"
,
dbus_interface
=
"
org.freedesktop.DBus.Properties
"
,
)
try
:
# pylint: disable=E0401
import
dbus
except
ImportError
:
u
.
log
(
"
Using systemctl to get current state.
"
)
returncode
,
output
=
u
.
exec_cmd
(
"
systemctl status fail2ban | grep
'
Active:
'"
,
log_output
=
False
)
if
returncode
!=
0
:
active
=
"
no
"
state
=
"
not installed
"
else
:
info
=
output
.
replace
(
"
Active:
"
,
""
).
strip
().
split
(
"
"
)
if
len
(
info
)
>
1
:
active
=
info
[
0
]
state
=
info
[
1
].
strip
(
"
()
"
)
else
:
active
=
"
no
"
state
=
"
unknown
"
else
:
u
.
log
(
"
Using dbus to get current state.
"
)
bus
=
dbus
.
SystemBus
()
systemd
=
bus
.
get_object
(
"
org.freedesktop.systemd1
"
,
"
/org/freedesktop/systemd1
"
)
manager
=
dbus
.
Interface
(
systemd
,
"
org.freedesktop.systemd1.Manager
"
)
unit
=
manager
.
LoadUnit
(
"
{}.service
"
.
format
(
name
))
proxy
=
bus
.
get_object
(
"
org.freedesktop.systemd1
"
,
str
(
unit
))
active
=
proxy
.
Get
(
"
org.freedesktop.systemd1.Unit
"
,
"
ActiveState
"
,
dbus_interface
=
"
org.freedesktop.DBus.Properties
"
,
)
state
=
proxy
.
Get
(
"
org.freedesktop.systemd1.Unit
"
,
"
SubState
"
,
dbus_interface
=
"
org.freedesktop.DBus.Properties
"
,
)
return
str
(
active
),
str
(
state
)
...
...
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