mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-12 11:38:47 +00:00
Remove broken tests, move docs back to website directory
This commit is contained in:
parent
67b5d5f6b0
commit
9d42bf518f
7 changed files with 0 additions and 55 deletions
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
provisioner:
|
||||
inventory:
|
||||
group_vars:
|
||||
all:
|
||||
mumble_enabled: true
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -23,7 +23,6 @@
|
|||
- "{{ mumble_tcp_port }}:64738/tcp"
|
||||
- "{{ mumble_udp_port }}:64738/udp"
|
||||
env:
|
||||
# Setting the password prevents unwanted users from connecting to the instance, especially if publicly available.
|
||||
MUMBLE_CONFIG_SERVER_PASSWORD: "{{ mumble_server_password }}"
|
||||
restart_policy: unless-stopped
|
||||
labels:
|
Loading…
Reference in a new issue