ソースを参照

Merge d8ca0a2a92 into e9ba6977b7

pull/28/merge
Paul Bakker 2年前
コミット
4a7868c894
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更6行の追加2行の削除
  1. +6
    -2
      _states/ufw.py

+ 6
- 2
_states/ufw.py ファイルの表示

@@ -20,8 +20,12 @@ def _changed(name, msg, **changes):


def _resolve(host):
# let's just see if it starts with a number or a colon, for simplicity
if re.match(r'^[0-9:]', host):
# pure IP address / netmask IPv4?
if re.match(r'^([0-9\.])+(/[0-9]+)?$', host):
return host

# pure IPv6 address / netmask?
if re.match(r'^([0-9a-f:]+)(/[0-9]+)?$', host):
return host

return socket.gethostbyname(host)

読み込み中…
キャンセル
保存