コード例 #1
0
ファイル: sanity_check.py プロジェクト: vinayakhegdev/neutron
def check_ip6tables():
    result = checks.ip6tables_supported()
    if not result:
        LOG.error(
            _LE('Cannot run ip6tables. Please ensure that it '
                'is installed.'))
    return result
コード例 #2
0
 def test_ip6tables_support(self):
     checks.ip6tables_supported()
コード例 #3
0
ファイル: sanity_check.py プロジェクト: eayunstack/neutron
def check_ip6tables():
    result = checks.ip6tables_supported()
    if not result:
        LOG.error('Cannot run ip6tables. Please ensure that it '
                  'is installed.')
    return result
コード例 #4
0
ファイル: test_sanity.py プロジェクト: 21atlas/neutron
 def test_ip6tables_support(self):
     checks.ip6tables_supported()