1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/6-generic-apps/tasks/main.yml

78 lines
1.3 KiB
YAML
Raw Normal View History

2017-10-27 01:09:55 +00:00
# Generic Apps
2017-10-30 20:35:28 +00:00
- name: ...IS BEGINNING ====================================
2017-10-27 01:09:55 +00:00
command: echo
- name: DOKUWIKI
include_role:
name: dokuwiki
when: dokuwiki_install
2017-10-27 01:44:42 +00:00
tags: dokuwiki
2017-10-27 01:09:55 +00:00
2018-03-21 18:42:24 +00:00
- name: MEDIAWIKI
include_role:
name: mediawiki
when: mediawiki_install
tags: mediawiki
2017-10-27 01:09:55 +00:00
- name: ELGG
include_role:
name: elgg
when: elgg_install
2017-10-27 01:44:42 +00:00
tags: elgg
2017-10-27 01:09:55 +00:00
- name: EJABBERD
include_role:
name: ejabberd
when: ejabberd_install
2017-10-27 01:44:42 +00:00
tags: ejabberd
2017-10-27 01:09:55 +00:00
2018-11-04 05:32:26 +00:00
- name: LOKOLE
include_role:
name: lokole
when: lokole_install
tags: lokole
2019-01-15 19:24:24 +00:00
- name: MOSQUITTO
include_role:
name: mosquitto
when: mosquitto_install
tags: mosquitto
- name: NODE-RED
include_role:
name: nodered
when: nodered_install
tags: nodered
2017-10-27 01:09:55 +00:00
- name: NEXTCLOUD
include_role:
name: nextcloud
when: nextcloud_install
2017-10-27 01:44:42 +00:00
tags: nextcloud
2017-10-27 01:09:55 +00:00
2018-08-30 21:32:11 +00:00
#- name: OWNCLOUD
# include_role:
# name: owncloud
# when: owncloud_install
# tags: owncloud
2017-10-27 01:09:55 +00:00
- name: PBX
include_role:
name: pbx
when: pbx_install
tags: pbx
2017-10-27 01:09:55 +00:00
- name: WORDPRESS
include_role:
name: wordpress
when: wordpress_install
2017-10-27 01:44:42 +00:00
tags: wordpress
2017-10-27 01:09:55 +00:00
2017-10-30 20:35:28 +00:00
- name: Recording STAGE 6 HAS COMPLETED ====================
lineinfile:
2018-10-15 09:33:16 +00:00
dest: "{{ iiab_env_file }}"
regexp: '^STAGE=*'
line: 'STAGE=6'
state: present