1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00
iiab/roles/6-generic-apps/tasks/main.yml

91 lines
1.5 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
2019-06-13 12:26:26 +00:00
- name: AZURACAST
include_role:
name: azuracast
when: azuracast_install | bool
tags: azuracast
2017-10-27 01:09:55 +00:00
- name: DOKUWIKI
include_role:
name: dokuwiki
when: dokuwiki_install | bool
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 | bool
2018-03-21 18:42:24 +00:00
tags: mediawiki
2019-11-02 10:27:42 +00:00
# unmaintained
- name: EJABBERD
include_role:
name: ejabberd
when: ejabberd_install | bool
tags: ejabberd
2017-10-27 01:09:55 +00:00
2019-03-08 06:47:29 +00:00
- name: ELGG
include_role:
name: elgg
when: elgg_install | bool
2019-03-08 06:47:29 +00:00
tags: elgg
- name: GITEA
include_role:
name: gitea
when: gitea_install | bool
tags: gitea
2018-11-04 05:32:26 +00:00
- name: LOKOLE
include_role:
name: lokole
when: lokole_install | bool
2018-11-04 05:32:26 +00:00
tags: lokole
2019-01-15 19:24:24 +00:00
- name: MOSQUITTO
include_role:
name: mosquitto
when: mosquitto_install | bool
2019-01-15 19:24:24 +00:00
tags: mosquitto
- name: NODE-RED
include_role:
name: nodered
when: nodered_install | bool
2019-01-15 19:24:24 +00:00
tags: nodered
2017-10-27 01:09:55 +00:00
- name: NEXTCLOUD
include_role:
name: nextcloud
when: nextcloud_install | bool
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 | bool
2018-08-30 21:32:11 +00:00
# tags: owncloud
2017-10-27 01:09:55 +00:00
- name: PBX
include_role:
name: pbx
when: pbx_install | bool
tags: pbx
2017-10-27 01:09:55 +00:00
- name: WORDPRESS
include_role:
name: wordpress
when: wordpress_install | bool
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