diff --git a/.gitignore b/.gitignore index 5c199eb..86b3473 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ # ---> Ansible *.retry +filter/plugins/ +library diff --git a/molecule/ec2-centos-7/tests/test_default.py b/molecule/ec2-centos-7/tests/test_default.py index 0419ccf..40300ab 100644 --- a/molecule/ec2-centos-7/tests/test_default.py +++ b/molecule/ec2-centos-7/tests/test_default.py @@ -19,8 +19,8 @@ def test_hassio_running_and_enabled(host): def test_hassio_socket(host): # Verify the socket is listening for HTTP traffic for _ in range(30): - if host.socket("tcp://0.0.0.0:80").is_listening: + if host.socket("tcp://0.0.0.0:8123").is_listening: break time.sleep(1) - assert host.socket("tcp://0.0.0.0:80").is_listening + assert host.socket("tcp://0.0.0.0:8123").is_listening