瀏覽代碼

Set flag python_shell=True. Fixes #4 and #5

tags/v0.2.0
Mario del Pozo 9 年之前
父節點
當前提交
63cc4e45fe
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      _modules/ufw.py

+ 1
- 1
_modules/ufw.py 查看文件

@@ -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



Loading…
取消
儲存