This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
salt
/
ufw-formula
forked from
ExternalMirrors/ufw-formula
Watch
2
Star
0
Fork
0
Code
Releases
8
Activity
Browse Source
Set flag python_shell=True.
Fixes
#4
and
#5
tags/v0.2.0
Mario del Pozo
9 years ago
parent
032db699f4
commit
63cc4e45fe
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
+1
-1
_modules/ufw.py
+ 1
- 1
_modules/ufw.py
View File
@@ -3,7 +3,7 @@ Execution module for UFW.
"""
def is_enabled():
cmd = 'ufw status | grep "Status: active"'
out = __salt__['cmd.run'](cmd)
out = __salt__['cmd.run'](cmd
, python_shell=True
)
return True if out else False
Write
Preview
Loading…
Cancel
Save