Merge branch 'x' into master-x-merge

This commit is contained in:
Przemyslaw Kaminski
2015-05-11 09:39:46 +02:00
103 changed files with 4331 additions and 967 deletions

View File

@@ -1,17 +0,0 @@
- hosts: [service/mariadb]
sudo: yes
tasks:
- shell: echo {{name}} >> /var/lib/solar/containers_list
- shell: docker ps | grep -q {{name}}
ignore_errors: true
register: is_running
- shell: docker run \
-d \
--net="host" \
--privileged \
--name {{name}} \
-e "MARIADB_ROOT_PASSWORD={{root_password}}" \
-e "BIND_ADDRESS={{bind_ip}}" \
{{image}}
when: is_running|failed