Преглед изворни кода

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…
Откажи
Сачувај