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
2bcdebee
Commit
2bcdebee
authored
Sep 06, 2015
by
Ad Schellevis
Committed by
Franco Fichtner
Sep 09, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style fix list_table.py
parent
b5f59fbd
Changes
1
Show 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 @
2bcdebee
...
@@ -35,19 +35,21 @@ import os
...
@@ -35,19 +35,21 @@ import os
import
sys
import
sys
import
ujson
import
ujson
result
=
[]
if
__name__
==
'__main__'
:
if
len
(
sys
.
argv
)
>
1
:
result
=
[]
if
len
(
sys
.
argv
)
>
1
:
with
tempfile
.
NamedTemporaryFile
()
as
output_stream
:
with
tempfile
.
NamedTemporaryFile
()
as
output_stream
:
subprocess
.
call
([
'/sbin/pfctl'
,
'-t'
,
sys
.
argv
[
1
],
'-T'
,
'show'
],
stdout
=
output_stream
,
stderr
=
open
(
os
.
devnull
,
'wb'
))
subprocess
.
call
([
'/sbin/pfctl'
,
'-t'
,
sys
.
argv
[
1
],
'-T'
,
'show'
],
stdout
=
output_stream
,
stderr
=
open
(
os
.
devnull
,
'wb'
))
output_stream
.
seek
(
0
)
output_stream
.
seek
(
0
)
for
line
in
output_stream
.
read
()
.
strip
()
.
split
(
'
\n
'
):
for
line
in
output_stream
.
read
()
.
strip
()
.
split
(
'
\n
'
):
if
line
.
strip
()
!=
""
:
if
line
.
strip
()
!=
""
:
result
.
append
(
line
.
strip
())
result
.
append
(
line
.
strip
())
# handle command line argument (type selection)
# handle command line argument (type selection)
if
len
(
sys
.
argv
)
>
2
and
sys
.
argv
[
2
]
==
'json'
:
if
len
(
sys
.
argv
)
>
2
and
sys
.
argv
[
2
]
==
'json'
:
print
(
ujson
.
dumps
(
result
))
print
(
ujson
.
dumps
(
result
))
else
:
else
:
# output plain
# output plain
for
table
in
result
:
for
table
in
result
:
print
(
table
)
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