2015-06-29 19:58:48 +02:00
|
|
|
---
|
|
|
|
- name: Enable and start the virtuoso service
|
2015-07-14 14:08:41 +02:00
|
|
|
service: name=virtuoso-opensource-{{ virtuoso_version }} state=restarted enabled=yes
|
2015-06-29 19:58:48 +02:00
|
|
|
when: virtuoso_enabled
|
|
|
|
tags: [ 'virtuoso', 'virtuoso_conf' ]
|
|
|
|
|
|
|
|
- name: Stop and disable the virtuoso service
|
|
|
|
service: name=virtuoso-opensource-{{ virtuoso_version }} state=stopped enabled=no
|
|
|
|
when: not virtuoso_enabled
|
|
|
|
tags: [ 'virtuoso', 'virtuoso_conf' ]
|