Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eterban
Project
Project
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
eterban
Commits
1b8e4561
Commit
1b8e4561
authored
Jul 26, 2026
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gateway: fail unban CLI on invalid invocation
parent
cad9cdbd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
unban.py
gateway/usr/share/eterban/unban.py
+2
-2
No files found.
gateway/usr/share/eterban/unban.py
View file @
1b8e4561
...
...
@@ -10,7 +10,7 @@ import ipaddress
def
get_settings
(
path_to_config
):
if
not
os
.
path
.
exists
(
path_to_config
):
print
(
"Missed config file"
)
sys
.
exit
()
sys
.
exit
(
1
)
config
=
configparser
.
ConfigParser
()
config
.
read
(
path_to_config
)
...
...
@@ -40,7 +40,7 @@ else:
if
not
ip
:
print
(
"Run with IP arg"
)
sys
.
exit
()
sys
.
exit
(
1
)
try
:
ip
=
str
(
ipaddress
.
ip_network
(
ip
,
strict
=
False
))
except
ValueError
:
...
...
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