1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-12 19:22:24 +00:00

Clean 6-generic-apps/tasks/main.yml

This commit is contained in:
A Holt 2020-01-13 11:43:45 -05:00 committed by GitHub
parent 08cddfcb8c
commit 50f72834df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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