Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Kulya
OpnSense
Commits
986a7d36
Commit
986a7d36
authored
Sep 06, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style fix list_table.py
parent
e14e5938
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
16 deletions
+18
-16
list_table.py
src/opnsense/scripts/filter/list_table.py
+18
-16
No files found.
src/opnsense/scripts/filter/list_table.py
View file @
986a7d36
...
...
@@ -35,19 +35,21 @@ import os
import
sys
import
ujson
result
=
[]
if
len
(
sys
.
argv
)
>
1
:
with
tempfile
.
NamedTemporaryFile
()
as
output_stream
:
subprocess
.
call
([
'/sbin/pfctl'
,
'-t'
,
sys
.
argv
[
1
],
'-T'
,
'show'
],
stdout
=
output_stream
,
stderr
=
open
(
os
.
devnull
,
'wb'
))
output_stream
.
seek
(
0
)
for
line
in
output_stream
.
read
()
.
strip
()
.
split
(
'
\n
'
):
if
line
.
strip
()
!=
""
:
result
.
append
(
line
.
strip
())
# handle command line argument (type selection)
if
len
(
sys
.
argv
)
>
2
and
sys
.
argv
[
2
]
==
'json'
:
print
(
ujson
.
dumps
(
result
))
else
:
# output plain
for
table
in
result
:
print
(
table
)
if
__name__
==
'__main__'
:
result
=
[]
if
len
(
sys
.
argv
)
>
1
:
with
tempfile
.
NamedTemporaryFile
()
as
output_stream
:
subprocess
.
call
([
'/sbin/pfctl'
,
'-t'
,
sys
.
argv
[
1
],
'-T'
,
'show'
],
stdout
=
output_stream
,
stderr
=
open
(
os
.
devnull
,
'wb'
))
output_stream
.
seek
(
0
)
for
line
in
output_stream
.
read
()
.
strip
()
.
split
(
'
\n
'
):
if
line
.
strip
()
!=
""
:
result
.
append
(
line
.
strip
())
# handle command line argument (type selection)
if
len
(
sys
.
argv
)
>
2
and
sys
.
argv
[
2
]
==
'json'
:
print
(
ujson
.
dumps
(
result
))
else
:
# output plain
for
table
in
result
:
print
(
table
)
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