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
50adda50
Commit
50adda50
authored
Aug 16, 2013
by
Adam Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added version checking, doesn't work in older versions
parent
7ad8f6b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
+8
-1
library/net_infrastructure/firewalld
+8
-1
No files found.
library/net_infrastructure/firewalld
View file @
50adda50
...
...
@@ -59,7 +59,7 @@ options:
default: 0
notes:
- Not tested on any debian based system
requirements: [ firewalld ]
requirements: [ firewalld
>= 0.2.11
]
author: Adam Miller <maxamillion@fedoraproject.org>
'''
...
...
@@ -74,6 +74,9 @@ import re
import
sys
try
:
import
firewall.config
FW_VERSION
=
firewall
.
config
.
VERSION
from
firewall.client
import
FirewallClient
fw
=
FirewallClient
()
except
ImportError
:
...
...
@@ -165,6 +168,10 @@ def main():
supports_check_mode
=
True
)
## Pre-run version checking
if
FW_VERSION
<
"0.2.11"
:
module
.
fail_json
(
msg
=
'unsupported version of firewalld, requires >= 2.0.11'
)
## Global Vars
changed
=
False
msgs
=
[]
...
...
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