summaryrefslogtreecommitdiff
path: root/test/legacy/consul_running.py
diff options
context:
space:
mode:
authorMatt Clay <mclay@redhat.com>2020-02-26 11:48:30 -0800
committerGitHub <noreply@github.com>2020-02-26 11:48:30 -0800
commitb68e55da267b655451e6e1e783dd927c8e5e8b2e (patch)
treee020937b2df0dda3c9133063a34343bfa099d6a8 /test/legacy/consul_running.py
parenta6f24f8aa9da9f473332532b2e11ff333ce00a0f (diff)
downloadansible-b68e55da267b655451e6e1e783dd927c8e5e8b2e.tar.gz
Remove `test/legacy/` directory. (#67786)
* Remove `test/legacy/` directory. * Remove references to `test/legacy/` directory. * Update the remaining valid legacy reference. * Remove outdated legacy references.
Diffstat (limited to 'test/legacy/consul_running.py')
-rw-r--r--test/legacy/consul_running.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/legacy/consul_running.py b/test/legacy/consul_running.py
deleted file mode 100644
index 0772cd4046..0000000000
--- a/test/legacy/consul_running.py
+++ /dev/null
@@ -1,11 +0,0 @@
-''' Checks that the consul agent is running locally. '''
-
-if __name__ == '__main__':
-
- try:
- import consul
- consul = consul.Consul(host='0.0.0.0', port=8500)
- consul.catalog.nodes()
- print("True")
- except Exception:
- pass