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
Jerry Vonau 6e1eec612f restore EJABBERD, OSM, PATHAGAR
OSM, PATHAGAR would require virualenv work to port to python3
2019-11-02 13:19:26 -05:00

90 lines
1.5 KiB
YAML

# Generic Apps
- name: ...IS BEGINNING ====================================
command: echo
- name: AZURACAST
include_role:
name: azuracast
when: azuracast_install | bool
tags: azuracast
- name: DOKUWIKI
include_role:
name: dokuwiki
when: dokuwiki_install | bool
tags: dokuwiki
- name: MEDIAWIKI
include_role:
name: mediawiki
when: mediawiki_install | bool
tags: mediawiki
# unmaintained
- name: EJABBERD
include_role:
name: ejabberd
when: ejabberd_install | bool
tags: ejabberd
- name: ELGG
include_role:
name: elgg
when: elgg_install | bool
tags: elgg
- name: GITEA
include_role:
name: gitea
when: gitea_install | bool
tags: gitea
- name: LOKOLE
include_role:
name: lokole
when: lokole_install | bool
tags: lokole
- name: MOSQUITTO
include_role:
name: mosquitto
when: mosquitto_install | bool
tags: mosquitto
- name: NODE-RED
include_role:
name: nodered
when: nodered_install | bool
tags: nodered
- name: NEXTCLOUD
include_role:
name: nextcloud
when: nextcloud_install | bool
tags: nextcloud
#- name: OWNCLOUD
# include_role:
# name: owncloud
# when: owncloud_install | bool
# tags: owncloud
- name: PBX
include_role:
name: pbx
when: pbx_install | bool
tags: pbx
- name: WORDPRESS
include_role:
name: wordpress
when: wordpress_install | bool
tags: wordpress
- name: Recording STAGE 6 HAS COMPLETED ====================
lineinfile:
dest: "{{ iiab_env_file }}"
regexp: '^STAGE=*'
line: 'STAGE=6'
state: present