Remove broken tests, move docs back to website directory

This commit is contained in:
David Stephens 2023-04-11 23:28:40 +01:00
parent 67b5d5f6b0
commit 9d42bf518f
7 changed files with 0 additions and 55 deletions

View file

@ -1,6 +0,0 @@
---
provisioner:
inventory:
group_vars:
all:
mumble_enabled: true

View file

@ -1,10 +0,0 @@
---
- name: Stop
hosts: all
become: true
tasks:
- name: "Include {{ lookup('env', 'MOLECULE_PROJECT_DIRECTORY') | basename }} role"
include_role:
name: "{{ lookup('env', 'MOLECULE_PROJECT_DIRECTORY') | basename }}"
vars:
mumble_enabled: false

View file

@ -1,19 +0,0 @@
---
- name: Verify
hosts: all
gather_facts: false
tasks:
- name: Include vars
include_vars:
file: ../../defaults/main.yml
- name: Get container state
docker_container_info:
name: "{{ mumble_container_name }}"
register: result
- name: Check Mumble is running
assert:
that:
- result.container['State']['Status'] == "running"
- result.container['State']['Restarting'] == false

View file

@ -1,19 +0,0 @@
---
- name: Verify
hosts: all
gather_facts: false
tasks:
- name: Include vars
include_vars:
file: ../../defaults/main.yml
- name: Try and stop and remove Mumble
docker_container:
name: "{{ mumble_container_name }}"
state: absent
register: result
- name: Check Mumble is stopped
assert:
that:
- not result.changed

View file

@ -23,7 +23,6 @@
- "{{ mumble_tcp_port }}:64738/tcp" - "{{ mumble_tcp_port }}:64738/tcp"
- "{{ mumble_udp_port }}:64738/udp" - "{{ mumble_udp_port }}:64738/udp"
env: env:
# Setting the password prevents unwanted users from connecting to the instance, especially if publicly available.
MUMBLE_CONFIG_SERVER_PASSWORD: "{{ mumble_server_password }}" MUMBLE_CONFIG_SERVER_PASSWORD: "{{ mumble_server_password }}"
restart_policy: unless-stopped restart_policy: unless-stopped
labels: labels: