mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #7729 from rgbkrk/ufw_check_direction+interface
Error checking and reporting on interface ufw rule
This commit is contained in:
commit
aaa74352a7
1 changed files with 3 additions and 0 deletions
|
@ -205,6 +205,9 @@ def main():
|
|||
if len(commands) < 1:
|
||||
module.fail_json(msg="Not any of the command arguments %s given" % commands)
|
||||
|
||||
if('interface' in params and 'direction' not in params):
|
||||
module.fail_json(msg="Direction must be specified when creating a rule on an interface")
|
||||
|
||||
# Ensure ufw is available
|
||||
ufw_bin = module.get_bin_path('ufw', True)
|
||||
|
||||
|
|
Loading…
Reference in a new issue